Commit 7054f3b3 by BellCodeEditor

save project

parent f5341843
Showing with 11 additions and 0 deletions
import turtle
pen = turtle.Pen()
pen.speed(100)
pen.hideturtle()
list_color=['yellow','blue','red','green']
for i in range(100):
pen.color(list_color[i%4])
pen.circle(i,180)
pen.right(90)
turtle.done()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment