Tkinter是Python中内置的图形用户界面(GUI)库。以下是一些常用的Tkinter例子: 创建窗口:import tkinter as tk root = tk.Tk() root.mainloop()