📅  最后修改于: 2022-03-11 14:46:52.755000             🧑  作者: Mango
from tkinter import *
root = Tk()
root.attributes('-fullscreen',True)
button = Button (root, text="Exit", command=root.destroy)
button.pack()
root.mainloop()