import turtle as t
import random
t.screensize(800, 600)
t.tracer(False)
t.color('red')
t.penup()
t.goto(100, 20)
t.down()
t.circle(50)
t.penup()
t.goto(-100, -10)
t.down()
t.circle(30)
t.penup()
t.goto(40, -150)
t.down()
t.circle(60)
t.penup()
t.goto(0, -200)
t.down()
for i in range(18):
t.circle(200, 20)
t.right(90)
l = random.randint(50, 70)
t.fd(l)
t.right(90)
size = random.randint(10, 15)
t.circle(size)
t.right(90)
t.fd(l)
t.right(90)