Hello_MMM

Автокликер

Feb 9th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | None | 0 0
  1. import pyautogui
  2. import time
  3.  
  4. print('До старта осталось: ')
  5. for i in range(0, 3):
  6.     print(3 - i)
  7.     time.sleep(1)
  8.  
  9. print('START')
  10.  
  11. for i in range(1, 10):
  12.     pyautogui.write('t')
  13.     pyautogui.write('/m')    
  14.     for j in range(1, i):
  15.         pyautogui.press('tab')
  16.     pyautogui.write(' hello')
  17.     pyautogui.press('enter')
Add Comment
Please, Sign In to add comment