728x90 반응형 자동화1 pyautogui를 활용하여 hello world 자동화를 해보자. 메모장을 열어서, hello world! 라고 자동으로 작성해주는 코드입니다. import pyautogui import time # Open Notepad pyautogui.hotkey('win', 'r') pyautogui.typewrite('notepad\n') # Wait for Notepad to open time.sleep(2) # Type "Hello, World!" into Notepad pyautogui.typewrite("Hello, World!") 2023. 2. 8. 이전 1 다음 728x90 반응형