python 想在第一个界面加一张图片

class zhujiemian(Tk):
# ---------------------------------------------------------------------------------------------------
def init(self):
super().__init__()
self.title('第一个窗口')
self.main()
# ---------------------------------------------------------------------------------------------------
def main(self):
self.geometry('600x500+500+100')
self.resizable(False, False)
Button(self, text='进入评测界面评测', command=self.cijie).grid()
Button(self, text='退出', command=self.destroy).grid()
def cijie(self):
self.destroy()
cijiemian()

https://zhidao.baidu.com/question/152338949.html