1# in command prompt, type "pip install pynput" to install pynput.
2from pynput.keyboard import Key, Controller
3
4keyboard = Controller()
5key = "a"
6
7keyboard.press(key)
8keyboard.release(key)
1import pyautogui
2
3# Holds down the alt key
4pyautogui.keyDown("alt")
5
6# Presses the tab key once
7pyautogui.press("tab")
8
9# Lets go of the alt key
10pyautogui.keyUp("alt")