Untitled

 avatar
unknown
plain_text
a year ago
301 B
9
Indexable
import pyautogui 
from time import sleep
import pyperclip

def escrever_frase(frase):
    pyperclip.copy(frase)
    pyautogui.hotkey("Ctrl","v")
    pyautogui.hotkey("Enter")
                     

pyautogui.click(4106,1014,duration=2)
escrever_frase('Olá, bem vindo ao meu mundo AI!')

Editor is loading...
Leave a Comment