Commit 9fd41772 by BellCodeEditor

save project

parent bf09b2e9
Showing with 2 additions and 3 deletions
...@@ -4,15 +4,14 @@ ...@@ -4,15 +4,14 @@
""" """
import turtle import turtle
pen = turtle.Pen() pen = turtle.Pen()
colors=["red","orange","yellow","blue"]
pen.speed(0) pen.speed(0)
pen._delay(0.1) pen._delay(0.1)
# pen._tracer(False) pen._tracer(False)
# 请创造师在下面接着创作 # 请创造师在下面接着创作
for i in range(1,900): for i in range(1,900):
pen.left(91) pen.left(91)
pen.pencolor(colors[i%4])
pen.forward(i) pen.forward(i)
......
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