python画派大星代码
时间: 2023-10-12 22:31:22 浏览: 460
表白python画出心心相印爱心代码
以下是使用Python Turtle模块画派大星的代码:
```python
import turtle
# 设置画笔颜色和填充颜色
turtle.color("yellow", "yellow")
# 开始填充
turtle.begin_fill()
# 画星星
for i in range(5):
turtle.forward(200)
turtle.right(144)
# 结束填充
turtle.end_fill()
# 隐藏画笔
turtle.hideturtle()
# 显示绘图窗口
turtle.done()
```
运行以上代码后,即可在绘图窗口中看到画出的派大星。
阅读全文