Commit a895cf07 by BellCodeEditor

save project

parent fa0dff60
Showing with 12 additions and 0 deletions
import turtle#启用工具箱
pen=turtle.Pen()#引入笔
pen.shape("turtle")#笔变为海龟
#请使用turtle模块画出五角星
pen.fillcolor("green")#设置填充的颜色
pen.begin_fill()#开始填充
for i in range(5):#重复执行5次
pen.forward(200)#直行200
pen.left(144)#左转144度
pen.end_fill()#结束填充
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