Commit c88cc965 by BellCodeEditor

save project

parent d954f36f
Showing with 6 additions and 2 deletions
import turtle
pen=turtle.Pen()
pen.
for i in range(0,300,2):
screen = turtle.Screen()
screen.bgcolor("light pink")
colors=["white","blue","violet","cyan"]
pen.speed(1000)
for i in range(1,5000):
pen.pencolor(colors[i%4])
pen.forward(i)
pen.right(91)
pen.hideturtle()
......
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