python画红五角星

python画红五角星_第1张图片

#五角星
import turtle
turtle.setup(600, 400)  # 设置画布尺寸
turtle.fillcolor("red")  # 设置填充颜色
 
turtle.penup()  # 提起画笔改变出发点
turtle.goto(-280, 30)  # 移动画笔到合适位置,向左280像素,向上30像素
turtle.pendown()  # 放下画笔
turtle.begin_fill()  # 画笔开始填充
for i in range(5):  # 设置循环次数为5,两条边为一次循环,注意:笔画默认方向为x轴正方向
    turtle.fd(100)  # 画笔向前画100像素单位
    turtle.left(72)  # 左拐72度,这里的度数是相对于前一笔画正方向延长线的
    turtle.fd(100)  # 画笔向前画100像素单位
    turtle.right(144)  # 右拐144度
turtle.end_fill()  # 结束填充

 代码如上 随后五角星就画好了:

python画红五角星_第2张图片

 

你可能感兴趣的:(python,开发语言,游戏)