Commit b3314676 by BellCodeEditor

save project

parent fa0dff60
Showing with 24 additions and 0 deletions
"""
请使用turtle模块画出五角星
"""
import turtle #导入海龟
pen = turtle.Pen() #创建一只笔叫pen
pen.color("red") #设置笔的颜色为黑
pen.fillcolor("yellow") #设置笔的填充色为黄
pen.begin_fill() #定填充启点
for i in range(5):
pen.forward(200)
pen.right(144)
pen.end_fill() #定填充终点
pen.hideturtle() #隐藏海龟
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