Answers for "how to get keypress event for ! 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 "how to get keypress event for ! in python"

Python Answers by Framework

Browse Popular Code Answers by Language