Commit 4101ef0e by BellCodeEditor

save project

parent 623fb1a6
Showing with 21 additions and 0 deletions
"""
请使用turtle模块画出五角星
"""
#导入turtle模块 import
import turtle
#创建画笔 Pen()
pen=turtle.Pen()
#设置画笔颜色 fillcolor()填充颜色 pencolor()画笔颜色包含填充颜色、线条颜色
pen.fillcolor("red")
#开始填充 begin_fill()
pen.begin_fill()
#画五角星
for i in range(5):
pen.forward(200)
pen.right(144)
#结束填充 end_fill()
pen.end_fill()
#隐藏图标 hideturtle()
pen.hideturtle()
#固定画布 done()
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