Python 有一个具有许多功能的键盘模块。您可以在Shell和Console中使用它。它还检测整个 Windows 的密钥。
安装它,也许用这个命令:
pip3 install keyboard
然后在如下代码中使用它:
import keyboard #Using module keyboard
while True: #making a loop
try: #used try so that if user pressed other than the given key error will not be shown
if keyboard.is_pressed('a'): #if key 'a' is pressed
print('You Pressed A Key!')
break #finishing the loop
else:
pass
except:
break #if user pressed other than the given key the loop will break
您可以将其设置为多个密钥检测:
if keyboard.is_pressed('a') or keyboard.is_pressed('b') or keyboard.is_pressed('c'): # and so on
#then do this
安装模块时,进入文件夹:
python36-32/Lib/site-packages/keyboard
_keyboard_event.py
在记事本++中打开文件。
会有键盘事件。
不确定所有这些。
谢谢。