I am trying to figure out away to append text to tkinter objects. I have 64 text objects in total. I assigns text to an object as follows:
self.canvas.itemconfig(self.TextKeys[3], text = "Image")
But in the case I want to do:
self.canvas.itemconfig(self.TextKeys[3], text = "Comm")
How can I add the text instead of replacing it? Another issue I have is the amount of space on the canvas object is limted: 
Any advice/suggestions will be greatly appreciated!