python实例代码 python错误对话框的例子

发布时间:2019-10-24编辑:脚本学堂
本文分享下,python错误对话框的一个例子,显示错误信息的提示框,有需要的朋友参考下吧。

python错误对话框的实现代码,如下:

#!/bin/python
#edit by www.jb200.com

from Tkinter import *
from tkMessageBox import *
from tkFileDialog   import askopenfilename

def callback():
    showerror('Error!', "Error")

errmsg = 'Error!'
Button(text='Quit', command=callback).pack(fill=X)
Button(text='Spam', command=(lambda: showerror('Spam', errmsg))).pack(fill=X)
mainloop()

效果图,如下:
python错误对话框