在以下语句中:-
pyautogui.confirm('Choose one.', buttons=['Print A', 'Print B', 'Print C'])
我想在其中为每个按钮添加一个变量,但我不知道该怎么做。
答案 0 :(得分:0)
我不确定“为每个按钮添加一个变量”是什么意思,但是我敢猜测您想将变量或函数与按钮相关联。您可以为此使用dict:
a = "You choose A"
b = "You choose B"
c = "You choose C"
choices = {'Print A': a, 'Print B': b, 'Print C': c}
answer = pyautogui.confirm('Choose one.', buttons=list(choices))
#then either print the variable
print(choices[answer])
#or show it in an alert
pyautogui.alert(text=choices[answer], button='OK')