tkinter

Tkinter学习(1)

import tkinter as tk #导入tkinter库 root = tk.Tk() #创建一个窗口 root.title('my root') #定义窗口的标题,会在窗…