欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python : turtle 画奥运五环

程序员文章站 2022-07-13 23:30:56
...
draw_5rings.py
from turtle import *

colors=['blue','black','red','yellow','green']
for i in range(5):
    x = -100+100*i if i<3 else 50*(-1)**i
    y = 50 if i<3 else 0
    up(),goto(x,y),width(5),down()
    color(colors[i])
    circle(40)
#
color('black')
up(),goto(-80,-80),down()
write("the Olympic Rings",font=("Aril",16,'bold'))
done()
相关标签: python turtle