如何用python编写弹出对话框,并选择yes/no
发布网友
发布时间:2022-04-26 20:48
我来回答
共2个回答
热心网友
时间:2022-04-18 06:26
如果使用 python 自带的 tkinter 库 是这样实现的。
其他库的话可以查看一下api。
from Tkinter import *
from tkMessageBox import *
def answer():
showerror("Answer", "Sorry, no answer available")
def callback():
if askyesno('Verify', 'Really quit?'):
showwarning('Yes', 'Not yet implemented')
else:
showinfo('No', 'Quit has been cancelled')
Button(text='Quit', command=callback).pack(fill=X)
Button(text='Answer', command=answer).pack(fill=X)
mainloop()
热心网友
时间:2022-04-18 07:44
下个easygui模块,然后可以这样:
import easygui
Yes_or_No = easygui.buttonbox("Yes of No?", choices = ['Yes','No'])