Commit c70c78e3 by BellCodeEditor

save project

parent 3f20a216
Showing with 2 additions and 2 deletions
...@@ -2,11 +2,11 @@ ...@@ -2,11 +2,11 @@
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
pen.speed(100) pen.speed(1000)
b=turtle.Screen() b=turtle.Screen()
b.bgcolor("sky blue") b.bgcolor("sky blue")
colors=["red","orange","yellow","green"] colors=["red","orange","yellow","green"]
for i in range(1,700): for i in range(1,1000):
pen.forward(i) pen.forward(i)
pen.pencolor(colors[i%4]) pen.pencolor(colors[i%4])
pen.right(91) pen.right(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