Amazing Circle Spirograph using python 🤩
# Need to install package called turtle
# This is the source code down below
import turtle turtle.bgcolor("black") turtle.pensize(2) turtle.speed(0) for i in range(6): for colors in ['red', 'magenta', 'blue', 'cyan', 'green', 'white']: turtle.color(colors) turtle.circle(100) turtle.left(10) turtle.hideturtle()
3 Comments
Click here for CommentsGreat 😍
ReplyWow
ReplyI did this by copy and pasting on my pc and it's worked
Replygreat article
ConversionConversion EmoticonEmoticon