20~100 사이의 랜덤으로 정해지는 반지름과 5~10 사이의 랜덤으로 정해지는 원의 개수를 결정하고, x=-200~200, y=-200~200 사이 랜덤으로 정해진 위치에 원을 그리는 프로그램을 작성해보자. import random, turtle t=turtle.Turtle() t.shape("turtle") cir_num = random.randint(5,10) for i in range(cir_num): t.up() x=random.randint(-200,200) y=random.randint(-200,200) t.goto(x,y) t.down() t.circle(random.randint(20,100)) 모든 원의 크기는 동일하다고 할 때, 원의 반지름은 100~250 중 랜덤으로 결정되도록 하고..