“前期发育”:
import tkinter.messagebox as GUI
from tkinter import*
box=Tk()
box.withdraw()
1.提示信息弹窗:
GUI.showinfo(title='标题 ',message='内容 ' )
2.错误信息弹窗:
GUI.showerror(title=' 标题 ' message='内容 ' )
3.询问信息弹窗:
xinxi=GUI.askokcancel(title=' 标题 ' message=' 内容 ' )
if xinxi = ok :
执行的操作
else:
执行的操作
有问题记得在评论区分享