赞
踩
用python的turtle简单绘制奥运五环
五环的排序上面3个,下面2个,可以用goto定义坐标
五环的颜色blue, black, red, yellow, green
具体代码如下:
import turtle as t
c=['blue','black','red','yellow','green']
t.pensize(20)
for n in range(5):
t.color(c[n])
t.penup()
if n<3:
t.goto(-240+240*n,0)
else:
t.goto(-120+240*(n-3),-100)
t.pendown()
t.circle(100)
t.hideturtle()
效果图如下:
但相互之间没有避让,下次改进!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。