Doxygen не документирует статические классы?

Python имеет модуль клавиатуры со многими функциями. Установите его, возможно, с помощью этой команды:

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'):
    #then do this

29
задан Earlz 15 February 2011 в 00:40
поделиться