from time import sleep
import keyboard

for i in range(50):
    keyboard.press_and_release('c')
    sleep(0.07)
