from turtle import * from time import * tracer(n=0) hideturtle() for radius in range(-200, 201): clear() circle(radius) update() sleep(0.01)