有关Python的图形化界面——tkinter
文档:https://docs.python.org/zh-cn/3/library/tkinter.htmlhttps://wiki.python.org/moin/TkInter文档中的代码:import tkinter as tkclass Application(tk.Frame): def __init__(self, master=None): super().__init__(master) self.master = master