是的,Python 的 time.sleep()
函数可以用于暂停程序的执行一段时间。如果你想要在文件操作之间添加延迟,可以使用这个函数。以下是一个简单的示例:
import time
# 写入文件
with open("file.txt", "w") as file:
file.write("Hello, World!")
# 等待一段时间
time.sleep(5)
# 读取文件
with open("file.txt", "r") as file:
content = file.read()
print(content)
在这个示例中,我们首先将 “Hello, World!” 写入名为 “file.txt” 的文件,然后使用 time.sleep(5)
函数等待 5 秒,最后读取文件内容并打印出来。