python(五)1. GUI 编程tkinter 标准库123456789101112import tkinterdef show(): print(1)root = tkinter.Tk() # 创建tkinter应用程序
2022-01-23