gpt4 book ai didi

python - Pyautogui声明一个变量

转载 作者:太空宇宙 更新时间:2023-11-03 20:39:50 25 4
gpt4 key购买 nike

在下面的声明中:-

pyautogui.confirm('Choose one.', buttons=['Print A', 'Print B', 'Print C'])

在那里我想为每个按钮添加一个变量,但我不知 Prop 体该怎么做。

最佳答案

我不确定“为每个按钮添加一个变量”是什么意思,但我大胆猜测您想要将变量或函数与按钮相关联。您可以为此使用字典:

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')

关于python - Pyautogui声明一个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56928429/

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