If I have a few lists of lists that create grids which contain '#',' ','X' and 'O' how could I go about using the Tkinter library to represent these as different coloured squares on a canvas?
I am able to do it statically for one of the lists, but am unsure of how to make it dynamic so that I can load in each list.
This is the canvas that I wish to create it on:
self._canvas = Canvas(root, relief=SUNKEN, bg="black", width=300, height=300)
self._canvas.pack(side=TOP, expand=True, fill=BOTH)