from math import * from turtle import * def c(x,y,r): pu() setheading(0) goto(x,y-r) pd() circle(r) def lc(x,y,r,n): for i in range(n): c(x,y,r) x += 2*r pensize(2) color("red") speed(0) ht() y=80 radius=20 for i in range(5): lc(-100,y,radius,6) y -= radius*2