gpt4 book ai didi

python - tkinter 中的 'askquestion' 和 'askyesno' 有什么区别?

转载 作者:太空狗 更新时间:2023-10-30 02:43:22 24 4
gpt4 key购买 nike

Tkinter中messagebox的askquestion()askyesno()函数有什么区别?

我在这个网站上找到了这两个函数:http://infohost.nmt.edu/tcc/help/pubs/tkinter/web/tkMessageBox.html

最佳答案

来自 the source :

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 将返回YESNO,同时askyesno 将返回一个 bool 值.

关于python - tkinter 中的 'askquestion' 和 'askyesno' 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33558653/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com