12 lines
181 B
Python
12 lines
181 B
Python
|
from pyautogui import press
|
||
|
from time import sleep
|
||
|
|
||
|
def action():
|
||
|
while True:
|
||
|
sleep(0.1)
|
||
|
press("win")
|
||
|
sleep(20)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
action()
|