pynput backspace code example

Example 1: pynput windwos key

from pynput.keyboard import Key, Controller

keyboard = Controller()
keyboard.press(Key.space)
keyboard.release(Key.space)

keyboard.press('a')
keyboard.release('a')

# Type two upper case As
keyboard.press('A')
keyboard.release('A')
with keyboard.pressed(Key.shift):
    keyboard.press('a')
    keyboard.release('a')

keyboard.type('Hello World')

Example 2: pynput keyboard backspace

#for backspace
from pynput.keyboard import Key, Controller

kb = Controller()
kb.press(Key.backspace)
kb.release(Key.backspace)