import tkinter
class APP:
def __init__(self, t):
lobal photo
photo = tkinter.PhotoImage(file='tk.gif')
image_label = tkinter.Label(t, image=photo)
image_label.pack()
if __name__ == '__main__':
root = tkinter.Tk()
app = APP(root)
root.mainloop()
如果不加上 lobal photo,显示不出照片
