我如何让我的Python程序睡眠50毫秒?
当前回答
你也可以使用Timer()函数来实现。
代码:
from threading import Timer
def hello():
print("Hello")
t = Timer(0.05, hello)
t.start() # After 0.05 seconds, "Hello" will be printed
其他回答
使用time . sleep ():
import time
time.sleep(50 / 1000)
请参阅Python文档:https://docs.python.org/library/time.html#time.sleep
使用time . sleep ()
from time import sleep
sleep(0.05)
你也可以这样使用pyautogui:
import pyautogui
pyautogui._autoPause(0.05, False)
如果第一个参数不是None,那么它将暂停第一个参数的秒,在本例中为0.05秒
如果第一个参数是None,第二个参数是True,那么它将为全局暂停设置睡眠,该设置由:
pyautogui.PAUSE = int
如果你想知道原因,请参阅源代码:
def _autoPause(pause, _pause):
"""If `pause` is not `None`, then sleep for `pause` seconds.
If `_pause` is `True`, then sleep for `PAUSE` seconds (the global pause setting).
This function is called at the end of all of PyAutoGUI's mouse and keyboard functions. Normally, `_pause`
is set to `True` to add a short sleep so that the user can engage the failsafe. By default, this sleep
is as long as `PAUSE` settings. However, this can be override by setting `pause`, in which case the sleep
is as long as `pause` seconds.
"""
if pause is not None:
time.sleep(pause)
elif _pause:
assert isinstance(PAUSE, int) or isinstance(PAUSE, float)
time.sleep(PAUSE)
你也可以使用Timer()函数来实现。
代码:
from threading import Timer
def hello():
print("Hello")
t = Timer(0.05, hello)
t.start() # After 0.05 seconds, "Hello" will be printed
请注意,如果你的睡眠时间恰好是50毫秒,你就无法达到这个效果。它只是关于它。
推荐文章
- 使用散射数据集生成热图
- python:将脚本工作目录更改为脚本自己的目录
- 如何以编程方式获取python.exe位置?
- 如何跳过循环中的迭代?
- 使用Pandas为字符串列中的每个值添加字符串前缀
- ImportError:没有名为matplotlib.pyplot的模块
- 在python中遍历对象属性
- 如何在Python中使用方法重载?
- 在Python中提取文件路径(目录)的一部分
- 如何安装没有根访问权限的python模块?
- 尝试模拟datetime.date.today(),但不工作
- 将行添加到数组
- 如何在Python中直接获得字典键作为变量(而不是通过从值搜索)?
- Python:为什么functools。部分有必要吗?
- 如何用python timeit对代码段进行性能测试?