Commit ae7db91d by BellCodeEditor

auto save

parent 28d7ba78
Showing with 4 additions and 2 deletions
...@@ -6,9 +6,10 @@ import turtle ...@@ -6,9 +6,10 @@ import turtle
colors=["red","green","orange","blue"] colors=["red","green","orange","blue"]
turtle.bgcolor("black") turtle.bgcolor("black")
pen=turtle.Pen() pen=turtle.Pen()
for i in range(300): for i in range(10000):
pen.forward(i) pen.forward(i)
pen.right(91) pen.speed(100000)
pen.right(121)
pen.color(colors[i%4]) pen.color(colors[i%4])
pen.hideturtle() pen.hideturtle()
turtle.done() turtle.done()
\ No newline at end of file
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