When I draw a shape using:
canvas.create_rectangle(15, 15, 60, 60, color="blue")
Does Tkinter keep track of the fact that it was created?
I am making a game where my code has one Frame create a bunch of rectangles and then draw a big black rectangle to clear the screen and then draw another set of updated rectangles.
Am I creating thousands of rectangle objects in memory? What is the right way to do it? Appreciate some help here!