python使用turtle绘制奥运五环
奥林匹克标志中五个环的大小,颜色,间距有固定的比例,规定圆的半径为45,五个圆的起始坐标为(-110,-25),(0,-25),(110,-25),(-55,-75),(55,-75),五环的颜色分别为red, blue, green, yellow, black.提示:turtle goto(x,y)函数,能够将turtle画笔移动到坐标(x,y)。文章来源:https://www.toymoban.com/news/detail-504521.html
代码块如下:文章来源地址https://www.toymoban.com/news/detail-504521.html
import turtle
r=45
xy_list=[(-110,-25),(0,-25),(110,-25),(-55,-75),(55,-75)]
color_list=['red','yellow','green','blue','black']
turtle.pensize(5)
for i in range(5):
turtle.penup()
turtle.goto(xy_list[i][0],xy_list[i][1])
turtle.pendown() #绘制图案
turtle.color(color_list[i])
turtle.circle(r)
turtle.begin_fill()
turtle.end_fill()
turtle.hideturtle()
turtle.done()
到了这里,关于python使用turtle绘制奥运五环的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!