画五角星

#请替换括号中的提示性文字使程序可运行
import turtle
turtle.pensize(数字,画笔宽度 )
turtle.pencolor("画笔颜色")
turtle.fillcolor("填充颜色")
turtle.begin_fill()
for i in range(数字,循环次数):
    turtle.forward(数字,每个角的边长)
    turtle.right(数字,旋转的角度)
    turtle.forward(数字,每个角的边长)
    turtle.left(旋转角度)
turtle.end_fill()
turtle.hideturtle()   #隐藏画笔
turtle.done()         #结束绘制
posted @ 2020-09-28 17:59  达尔文的第三人称  阅读(86)  评论(0编辑  收藏  举报