python tkinter detect keypress code example
Example 1: how to detect a keypress tkinter
window.bind("<Key>", exampleFunction)
Example 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