用python写奥运五环代码
时间: 2023-06-06 12:09:01 浏览: 113
非常欢迎!以下是Python代码示例:
```python
import turtle
colors = ["blue", "yellow", "black", "green", "red"]
radius = 100
for i in range(5):
turtle.penup()
turtle.setpos(i * 200 - 400, 0)
turtle.pendown()
turtle.pencolor(colors[i])
turtle.circle(radius)
turtle.done()
```
这段代码使用Python的turtle模块绘制奥运五环图案。首先定义了五个不同颜色,然后以蓝、黄、黑、绿、红顺序循环绘制每个圆环,其中半径为100像素,间距为200像素。运行代码后,将在画布上显示一个彩色的奥运五环图案。
相关问题
python画奥运五环代码
以下是使用Python绘制奥运五环的代码示例:
```python
import turtle
# 设置画布大小
turtle.setup(800, 600)
# 设置画笔速度
turtle.speed(5)
# 设置画笔宽度
turtle.width(10)
# 设置五环的颜色
colors = ['blue', 'black', 'red', 'yellow', 'green']
# 设置五环的半径
radius = 45
# 设置五环的起始坐标
positions = [(-110, -25), (0, -25), (110, -25), (-55, -75), (55, -75)]
# 绘制五环
for i in range(5):
turtle.penup()
turtle.goto(positions[i])
turtle.pendown()
turtle.color(colors[i])
turtle.circle(radius)
# 隐藏画笔
turtle.hideturtle()
# 结束绘制
turtle.done()
```
Python绘制奥运五环代码
以下是Python绘制奥运五环的代码:
```python
import turtle
# 创建海龟对象
t = turtle.Turtle()
# 设置画布大小
turtle.setup(800, 600)
# 设置画笔大小
t.pensize(10)
# 绘制蓝色圆环
t.penup() # 抬起画笔
t.goto(-110, -25) # 移动海龟到起始点
t.pendown() # 放下画笔
t.color('blue') # 设置画笔颜色为蓝色
t.circle(50) # 绘制圆形
# 绘制黄色圆环
t.penup()
t.goto(0, -25)
t.pendown()
t.color('yellow')
t.circle(50)
# 绘制黑色圆环
t.penup()
t.goto(110, -25)
t.pendown()
t.color('black')
t.circle(50)
# 绘制绿色圆环
t.penup()
t.goto(-55, -75)
t.pendown()
t.color('green')
t.circle(50)
# 绘制红色圆环
t.penup()
t.goto(55, -75)
t.pendown()
t.color('red')
t.circle(50)
# 隐藏海龟
t.hideturtle()
# 等待用户关闭窗口
turtle.done()
```
执行上述代码,即可绘制出奥运五环。请确保已安装turtle模块。
阅读全文