python 画奥运五环
时间: 2023-04-10 16:03:04 浏览: 131
奥运5环python简单绘制
可以使用 Python 的 matplotlib 库来画奥运五环,以下是示例代码:
```python
import matplotlib.pyplot as plt
# 定义五个圆的中心坐标和半径
centers = [(0, 0), (-0.2, 0.3), (0.2, 0.3), (-0.4, 0), (0.4, 0)]
radii = [0.5, 0.5, 0.5, 0.5, 0.5]
# 画五个圆
fig, ax = plt.subplots()
for center, radius in zip(centers, radii):
circle = plt.Circle(center, radius, fill=False)
ax.add_artist(circle)
# 设置坐标轴范围和标题
ax.set_xlim(-1, 1)
ax.set_ylim(-1, 1)
ax.set_aspect('equal')
ax.set_title('Olympic Rings')
plt.show()
```
运行以上代码,即可得到一个画有奥运五环的图形。
阅读全文