Hey i am new to python and i am trying to update my GUI every 3 seconds 4 times. I have tried time.sleep() but it doesnt work. Any ideas?
for i in range(4):
#creates 10 circles randomly on the canvas
for _ in range(10):
circle1= Circle(canvas, random.randint(1,750), random.uniform(1,450), "red")
time.sleep(3)