当前位置:主页 > 软件编程 > Python代码 >
时间:2023-03-04 10:51:32 | 栏目:Python代码 | 点击:次
功能:间隔5毫秒,快速点击屏幕某区域,循环45000000次
from ctypes import * import time time.sleep(5) for i in range(1,45000000): windll.user32.SetCursorPos(900,50); windll.user32.SetCursorPos(900,300);