Commit aca27f0d by BellCodeEditor

save project

parent 711090b3
Showing with 11 additions and 5 deletions
import turtle import turtle
Screen=turtle.Screen()
Screen.bgcolor("black")
a= turtle.Pen() a= turtle.Pen()
a.speed(100) a.speed(100)
b=1 c=['red','orange','green','yellow']
for i in range(600): for i in range(1,600):
a.forward(b) a.pencolor(c[i%4])
b+=1 a.forward(i)
a.right(99)
a.right(120)
turtle.done() 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