Commit 1e102483 by BellCodeEditor

auto save

parent 3fc991bf
Showing with 7 additions and 5 deletions
......@@ -7,12 +7,13 @@ pen = turtle.Pen()
screen = turtle.Screen()
screen.bgcolor("black")
pen.hideturtle()
pen.speed(50)
pen.speed(300)
# 请创造师在下面接着创作
color = ["purple","orange","yellow","red","pink","sky blue"]
for i in range(1,300):
pen.color(color[i%6])
color = ["pink","sky blue"]
for i in range(1,1000):
pen.color(color[i%2])
pen.pensize(5)
pen.forward(i)
pen.left(91)
pen.right(94)
# 隐藏画笔,保存画布
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