用python画一个国旗
时间: 2023-02-19 11:13:55 浏览: 91
python画国旗代码
你可以使用Python的绘图库,如Matplotlib,来绘制国旗。下面是一个简单的例子,绘制中国国旗:
```
import matplotlib.pyplot as plt
import numpy as np
plt.figure(figsize=(6, 4))
# Create a red rectangle
plt.gca().add_patch(plt.Rectangle((0, 0), 1, 0.6, facecolor='red'))
# Create a yellow rectangle
plt.gca().add_patch(plt.Rectangle((0, 0.6), 1, 0.4, facecolor='yellow'))
# Plot the circle
theta = np.linspace(0, 2 * np.pi, 100)
x = 0.35 * np.cos(theta) + 0.5
y = 0.35 * np.sin(theta) + 0.5
plt.plot(x, y, color='blue', linewidth=2)
# Remove the axis and add a title
plt.axis('off')
plt.title('China Flag')
# Show the plot
plt.show()
```
运行上述代码,将会在一个图形窗口中显示中国国旗的图像。
阅读全文