Commit d5615053 by BellCodeEditor

save project

parent 5a7c70d2
Showing with 4 additions and 6 deletions
...@@ -19,13 +19,11 @@ while True: ...@@ -19,13 +19,11 @@ while True:
print("密码错误")''' print("密码错误")'''
import turtle import turtle
distance=1 turtle.speed(20)
turtle.speed(10)
turtle.pencolor("black") turtle.pencolor("black")
for i in range(300): for i in range(0,300):
turtle.forward(distance) turtle.forward(i)
distance=distance+1
turtle.right(91) turtle.right(91)
turtle.hideturtle turtle.hideturtle()
turtle.done() turtle.done()
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