如何设置时间延迟?

2022-09-05 00:45:22

如何在 Python 脚本中设置时间延迟?


答案 1

这将延迟 2.5 秒:

import time
time.sleep(2.5)

下面是另一个示例,其中某些内容大约每分钟运行一次:

import time
while True:
    print("This prints once a minute.")
    time.sleep(60) # Delay for 1 minute (60 seconds).

答案 2

使用模块中的 sleep()。它可以对亚秒级分辨率采用浮点参数。time

from time import sleep
sleep(0.1)  # Time in seconds