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()