Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import pyautogui as pag
- import pandas as pd
- import time
- Text = input('Put the text here: ')
- for i in range(1, 3):
- print(i)
- time.sleep(1)
- Text = Text.split(' ')
- Long = len(Text)
- for x in range(0, Long):
- if x == Long - 1:
- pag.typewrite(Text[x])
- else:
- pag.typewrite(Text[x] + ' ')
- time.sleep(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement