Tkinter中messagebox的功能askquestion()
和功能有什么区别?askyesno()
我在这个网站上找到了这两个函数:http: //infohost.nmt.edu/tcc/help/pubs/tkinter/web/tkMessageBox.html
Tkinter中messagebox的功能askquestion()
和功能有什么区别?askyesno()
我在这个网站上找到了这两个函数:http: //infohost.nmt.edu/tcc/help/pubs/tkinter/web/tkMessageBox.html
从来源:
def askquestion(title=None, message=None, **options):
"Ask a question"
return _show(title, message, QUESTION, YESNO, **options)
def askyesno(title=None, message=None, **options):
"Ask a question; return true if the answer is yes"
s = _show(title, message, QUESTION, YESNO, **options)
return s == YES
因此,区别在于askquestion
将返回YES
or NO
,同时askyesno
将返回布尔值。