Commit 3dcc291e by BellCodeEditor

save project

parent 00b0e965
Showing with 16 additions and 0 deletions
import turtle
pen=turtle.Pen()
colors=["red","blue","orange","yellow"]
pen.speed(999999999999999)
pen2=turtle.Screen()
pen2.screencolor()
for dis in range(1,501):
pen.pencolor(colors[dis%4])
pen.forward(dis)
pen.right(91)
pen.hideturtle()
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