Python的keyboard模塊具有許多功能。你可以在兩個使用它殼牌和控制檯。它也檢測整個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
in notepad ++。
會有鍵盤事件。
不確定關於他們所有的。
謝謝。
你的問題是什麼? –