如何每秒执行一个函数 X 次?
How do I execute a function X times per second?
我正在编写一个自动答题器并希望将延迟作为 CPS(每秒点击次数),那么,我如何根据 python 中的 CPS 值计算出延迟?
我试过谷歌搜索,但只找到了 CPS 测试器,没有实际代码
这是一段代码:
def clickerstart(): #this functions activates when you press the "start" button in the autocklicker menu ¦
if clickerlmb == 1:
mouse.press(Button.left)
time.sleep(delay) # "delay" is the time to sleep, found from the CPS
mouse.release(Button.left)
周期 = 1 / 频率
您正在将每秒点击次数转换为每次点击秒数。就您可能的变量而言:
delay = 1 / cps
我正在编写一个自动答题器并希望将延迟作为 CPS(每秒点击次数),那么,我如何根据 python 中的 CPS 值计算出延迟?
我试过谷歌搜索,但只找到了 CPS 测试器,没有实际代码
这是一段代码:
def clickerstart(): #this functions activates when you press the "start" button in the autocklicker menu ¦
if clickerlmb == 1:
mouse.press(Button.left)
time.sleep(delay) # "delay" is the time to sleep, found from the CPS
mouse.release(Button.left)
周期 = 1 / 频率
您正在将每秒点击次数转换为每次点击秒数。就您可能的变量而言:
delay = 1 / cps