如何使用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

最佳答案

在PyAutoGUI中无法检测击键。您可能想尝试使用Pynput模块:https://pypi.org/project/pynput/

关于python-2.7 - 如何使用PyAutoGUI检测按键事件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53381360/

10-15 01:34