js check if shift key is pressed code example
Example 1: how to detect if a key is pressed in c#
//...
using System.Windows.Input;
class Main {
public void Main() {
while(true) {
if(Keyboard.IsKeyPressed(Key.A)) {
//...
}
return;
}
}
}
Example 2: python check if key is pressed
import keyboard
# Check if b was pressed
if keyboard.is_pressed('b'):
print('b Key was pressed')