用turtle库绘制一个奥运五环
时间: 2023-08-31 22:05:55 浏览: 105
python使用turtle库绘制奥运五环
5星 · 资源好评率100%
好的,以下是使用turtle库绘制奥运五环的代码:
```python
import turtle
# 设置画布大小
turtle.setup(600, 600)
# 设置画笔颜色、大小
turtle.pensize(10)
colors = ['blue', 'black', 'red', 'yellow', 'green']
# 绘制五个圆环
for i in range(5):
turtle.penup()
if i % 2 == 0:
turtle.goto(-100 + i * 80, 0)
else:
turtle.goto(-60 + i * 80, -70)
turtle.pendown()
turtle.color(colors[i])
turtle.circle(50)
# 隐藏画笔
turtle.hideturtle()
turtle.done()
```
运行结果如下图所示:
![奥运五环](https://img-blog.csdnimg.cn/20210618165118466.png)
阅读全文