标签:time while 区域 += python实现 点击 cond gui 电脑
import time
import pyautogui
x, y = 302, 534 # 鼠标需要移动到的位置
num_seconds = 2 # 将鼠标移动到指定坐标的间隔时间
time.sleep(8) # 延迟8秒
pyautogui.moveTo(x, y, duration=num_seconds)
time.sleep(3) # 延迟3秒
i = 0
while True:
time.sleep(2)
pyautogui.click()
i += 1
print(i)
标签:time while 区域 += python实现 点击 cond gui 电脑
原文地址:https://www.cnblogs.com/he-qing-qing/p/13287845.html