escrever

desafio escrever
 avatar
CARLOS2025
python
a year ago
239 B
5
Indexable
import pyautogui
import pyperclip

def escrever_frase(frase):
    pyperclip.copy(frase)
    pyautogui.hotkey('ctrl', 'v')

pyautogui.moveTo(x=832,y=437,duration=2)
pyautogui.leftClick()

escrever_frase('automação é Incrível')
Editor is loading...
Leave a Comment