python海龟绘图画五运会
时间: 2023-11-29 11:47:53 浏览: 77
以下是使用Python海龟绘图画五环图的代码示例:
```python
import turtle
# 设置画笔
t = turtle.Pen()
t.pensize(6)
# 画蓝色圆环
t.penup()
t.goto(-110, 0)
t.pendown()
t.color("blue")
t.circle(50)
# 画黄色圆环
t.penup()
t.goto(60, 0)
t.pendown()
t.color("yellow")
t.circle(50)
# 画黑色圆环
t.penup()
t.goto(-60, -50)
t.pendown()
t.color("black")
t.circle(50)
# 画绿色圆环
t.penup()
.goto(-170, -50)
t.pendown()
t.color("green")
t.circle(50)
# 画红色圆环
t.penup()
t.goto(110, -50)
t.pendown()
t.color("red")
t.circle(50)
# 隐藏画笔
t.hideturtle()
# 等待用户关闭窗口
turtle.done()
```
阅读全文