所以我有一项任务,我必须使用Tkinter来创建棋盘游戏。这只是我希望引入电路板图像的程序的一部分。但我继续犯错,“创建图像太早了”,我不确定我做错了什么。
到目前为止,这是我的代码:
from Tkinter import *
from pprint import pprint
# Which variable is currently updating
from variableColors import Variables
VariableIndex = 0
VariableText = Variables[VariableIndex]
Ids = None # Current canvas ids of the text and 4 player tokens:
# Will be None if not committed
VariableCoords = { } # Where store variable and coordinates
im = PhotoImage(file="C:\Users\Kiki\Desktop\Assignment\\")
photo = can.create_image(0,0,anchor=NW, image=im)
can.pack()
root.mainloop()
任何帮助将不胜感激。谢谢:))
答案 0 :(得分:14)
您忘了申报root - root = Tk()
。
使用前,Tk系统必须处于打开状态。