'performance between creating objects and moving them in tkinter

I have a couple of arc widgets on a tkinter canvas that I draw with create_arc. I need to move them. Currently, I am deleting them and recreating them with the create_arc method. This works better than using the .move() method. I was wondering if there are any performance issues with using this method? Will this bite me back when I have thousands of widgets on a canvas?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source