Commit 635bb275 by BellCodeEditor

save project

parent 8c7d08b4
Showing with 15 additions and 2 deletions
import turtle
pen=turtle.Pen()
i=1
pen.speed(500)
for i in range(500):
pen.forward(i)
pen.right(91)
i+=1
pen.hideturtle()
turtle.done()
\ No newline at end of file
......@@ -3,7 +3,9 @@
每次移动都增加画笔移动的长度,并旋转91°,重复执行300次,查看效果
"""
import turtle
i=1
pen = turtle.Pen()
for i in range(200):
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