python奥运五环

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

python奥运五环

GE-nni   2022-05-23 我要评论

完整代码

#绘制奥运五环

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)

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

在这里插入图片描述

总结

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们