📜  time.sleep - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:09.289000             🧑  作者: Mango

代码示例6
import time

print("Printed immediately.")
time.sleep(1.2)
print("This will be printed after 1.2 seconds.")