Python Tkinter Error, “Too Early to Create Image”

前端 未结 1 1487
暗喜
暗喜 2020-11-30 14:56

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

相关标签:
1条回答
  • 2020-11-30 15:37

    You forgot to declare root - root = Tk(). The Tk system must be ON before using it.

    0 讨论(0)
提交回复
热议问题