用python绘制奥运会五环标志
时间: 2023-05-16 16:04:57 浏览: 158
python奥运五环在绘制代码
5星 · 资源好评率100%
可以使用Python的matplotlib库来绘制奥运会五环标志。以下是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
import numpy as np
# 设置五环的颜色
colors = ['blue', 'black', 'red', 'yellow', 'green']
# 设置五环的半径和中心坐标
r = 1
centers = [(0, 0), (-r, 0), (r, 0), (-r/2, -r*np.sqrt(3)/2), (r/2, -r*np.sqrt(3)/2)]
# 绘制五环
fig, ax = plt.subplots()
for i in range(5):
circle = plt.Circle(centers[i], r, color=colors[i], fill=False)
ax.add_artist(circle)
# 设置坐标轴范围和隐藏坐标轴
ax.set_xlim(-1.5, 1.5)
ax.set_ylim(-1.5, 1.5)
ax.axis('off')
# 显示图像
plt.show()
```
运行以上代码,即可得到绘制的奥运会五环标志。
阅读全文