import pyautogui
cnt = 0
while True:
pyautogui.moveTo(500, 500, duration=1)
pyautogui.moveTo(250, 250, duration=1) pyautogui.PAUSE = 550 cnt += 1
if cnt>= 48:
break
import pyautogui
cnt = 0
while True:
pyautogui.moveTo(500, 500, duration=1)
pyautogui.moveTo(250, 250, duration=1) pyautogui.PAUSE = 550 cnt += 1
if cnt>= 48:
break
コメント