如何使用PyAutoGUI检测按键事件?在我的研究中,我无法在此模型中举例:
import pyautogui
num = 0
if pyautogui.press('b'): # I know the right thing is not to use the press, but, what do I put in place?
num = 1
答案 0 :(得分:2)
在PyAutoGUI中无法检测击键。您可能要尝试使用Pynput模块:https://pypi.org/project/pynput/
答案 1 :(得分:1)
我建议从 here 下载 python 键盘模块,它提供了你在这里需要的确切功能
import keyboard
if keyboard.is_pressed('b') == True:
num = 1