Advertisement
Xanonony

Ratatype - By AltLexon

Apr 26th, 2023
1,124
0
213 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | Source Code | 0 0
  1. import pyautogui as pag
  2. import pandas as pd
  3. import time
  4.  
  5.  
  6. Text = input('Put the text here: ')
  7.  
  8. for i in range(1, 3):
  9.     print(i)
  10.     time.sleep(1)
  11.  
  12. Text = Text.split(' ')
  13.  
  14. Long = len(Text)
  15.  
  16. for x in range(0, Long):
  17.     if x == Long - 1:
  18.         pag.typewrite(Text[x])
  19.     else:
  20.         pag.typewrite(Text[x] + ' ')
  21.  
  22.     time.sleep(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement