So I have an assignment that I have to use Tkinter to create a board game. This is just one part of the program where I want to bring in the image of the board. But I keep o
You forgot to declare root - root = Tk(). The Tk system must be ON before using it.
root = Tk()