Commit d6078456 by BellCodeEditor

save project

parent 5469fedc
Showing with 12 additions and 0 deletions
import turtle
#创建画笔
pen=turtle.Pen()
#改变画笔形状
pen.shape("turtle")
#移动画笔
for i in range(360):
pen.forward(1)
pen.left(1)
#保存画布
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