Bootstrap

turtle 奥运五环

import turtle as t

def f(x,y,a):
    t.pensize(10)
    t.penup()
    t.goto(x,y)
    t.pendown()
    t.pencolor(a)
    t.circle(50)

f(-180,0,'red')
f(-60,0,'blue')
f(60,0,'green')
f(-120,-50,'yellow')
f(0,-50,'black')
t.done()

;