Answers for "detect a key press in python"

2

how to detect keypress in python

# in console: pip install keyboard
import time
import keyboard as kb

key = "a"

while (True):
	if (kb.is_pressed(key)):
		print("a pressed")
	
    time.sleep(0.001) # decreases CPU usage
Posted by: Guest on March-01-2021

Code answers related to "detect a key press in python"

Python Answers by Framework

Browse Popular Code Answers by Language