Commit bbb2f9c0 by BellCodeEditor

save project

parent 4a89da84
Showing with 3 additions and 0 deletions
import turtle
t = turtle.Turtle()
t.speed(0)
ls = ["red","green","yellow","blue"]
for i in range(300):
t.color(ls[i%4])
t.fd(i)
t.left(91)
turtle.done()
......
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