Commit 65196976 by BellCodeEditor

auto save

parent 623fb1a6
Showing with 15 additions and 0 deletions
""" """
请使用turtle模块画出五角星 请使用turtle模块画出五角星
""" """
import turtle #导入库
p=turtle.Pen() #实例化p
p.shape("turtle")
p.fillcolor("red") #设置 填充颜色
p.begin_fill() #开始填充
for i in range(10): #画五角星
p.forward(200)
p.right(144)
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