python create keyboard shortcut code example

Example 1: how to create a hotkey in python

import keyboard
import time
# Using time.sleep, we can dramatically decrease the amount of CPU our program
# uses.

hotkey = "shift + ctrl + F2"
# Remember that the order in which the hotkey is set up is the order you
# need to press the keys.

while True:
  if keyboard.is_pressed(hotkey):
    print("Hotkey is being pressed")
    time.sleep(0.05)
  time.sleep(0.01)

Example 2: shortcut python

a = 10 
b = 5
#printing a and b
print(a)
print(b)

#shortcut
a,b = 10,5
print(a)
print(b)