当前位置:主页 > 软件编程 > Python代码 >

用python画个奥运五环(附完整代码)

时间:2022-10-14 10:24:54 | 栏目:Python代码 | 点击:

完整代码

#绘制奥运五环

import turtle
#导入turtle包

turtle.width(15)
#定义线条宽度为15

turtle.color("red")
turtle.circle(50)
turtle.penup()
#定义颜色,园半径,抬笔

turtle.goto(120,0)
turtle.pendown()
#定义线条走向,落笔

turtle.color("green")
turtle.circle(50)
turtle.penup()


turtle.goto(240,0)
turtle.pendown()

turtle.color("orange")
turtle.circle(50)
turtle.penup()

turtle.goto(60,-50)
turtle.pendown()

turtle.circle(50)
turtle.penup()

turtle.goto(180,-50)
turtle.pendown()

turtle.color("blue")
turtle.circle(50)

代码运行效果如下图所示:

在这里插入图片描述

总结

您可能感兴趣的文章:

相关文章