Commit 33edbdc5 by BellCodeEditor

save project

parent ff411e55
Showing with 3 additions and 2 deletions
...@@ -2,10 +2,11 @@ import turtle ...@@ -2,10 +2,11 @@ import turtle
p=turtle.Pen() p=turtle.Pen()
sb=1 sb=1
screen = turtle.Screen() screen = turtle.Screen()
p.hideturtle()
screen.bgcolor("light pink") screen.bgcolor("light pink")
colors=["yellow","red","orange","cyan"] colors=["yellow","red","orange","cyan"]
p.speed(1000000) p.speed(1000)
for i in range(900): for i in range(10000):
p.pencolor(colors[sb%4]) p.pencolor(colors[sb%4])
p.forward(sb) p.forward(sb)
p.left(91) p.left(91)
......
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