Commit 1c889449 by BellCodeEditor

auto save

parent fa0dff60
Showing with 14 additions and 0 deletions
import turtle#导入
pen=turtle.Pen()#创建画笔并存起
pen.speed(10)
pen.shape("turtle")#设置画笔的形状
pen.fillcolor("light blue")
pen.begin_fill()
for i in range(360):
pen.forward(200)#控制画笔向前移动
pen.right(179)#控制画笔左转
pen.end_fill()
pen.hideturtle()#隐藏画笔pen.showturtle()#显示画笔
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