用python 的turtle库绘制五星红旗
时间: 2023-07-12 13:07:05 浏览: 222
使用Python的turtle模块画国旗
好的,下面是用 Python 的 turtle 库绘制五星红旗的代码:
```python
import turtle
# 设置画布大小
screen = turtle.Screen()
screen.setup(800, 500)
# 画红色背景
turtle.penup()
turtle.goto(-400, 250)
turtle.pendown()
turtle.begin_fill()
turtle.color("red")
for i in range(2):
turtle.forward(800)
turtle.right(90)
turtle.forward(500)
turtle.right(90)
turtle.end_fill()
# 画大星星
turtle.penup()
turtle.goto(-280, 120)
turtle.pendown()
turtle.begin_fill()
turtle.color("yellow")
for i in range(5):
turtle.forward(100)
turtle.right(144)
turtle.end_fill()
# 画四个小星星
positions = [(0, 135), (-40, 85), (40, 85), (-40, 35)]
turtle.penup()
turtle.color("yellow")
for position in positions:
turtle.goto(position)
turtle.pendown()
turtle.begin_fill()
for i in range(5):
turtle.forward(20)
turtle.right(144)
turtle.end_fill()
# 隐藏画笔
turtle.hideturtle()
# 程序结束,持续显示
turtle.done()
```
运行代码后,就能看到绘制的五星红旗了。如果需要保存图片,可以使用 turtle 库提供的 `getcanvas()` 方法,将画布转换成 tkinter 的 Canvas 对象,再使用 Canvas 对象的 `postscript()` 方法保存成 PS 或 EPS 格式的图片。示例代码如下:
```python
# 保存为 EPS 格式图片
canvas = turtle.getcanvas()
canvas.postscript(file="五星红旗.eps")
```
阅读全文