Commit 42fa1f5d by BellCodeEditor

auto save

parent 623fb1a6
Showing with 13 additions and 0 deletions
"""
请使用turtle模块画出五角星
"""
import turtle #导入turtle模块
p=turtle.Pen() #创建画笔赋值给变量p
p.fillcolor("pink") #yellow red green blue purple
p.speed(100)
p.begin_fill()
for i in range(36):
p.forward(220)
p.right(170)
p.end_fill()
#p.hideturtle() #隐藏图标
turtle.done()
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