是的,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 秒,最后讀取文件內容并打印出來。