Python: Sleep the Program
作者:XD / 发表: 2022年5月30日 11:30 / 更新: 2022年5月30日 11:30 / 编程笔记 / 阅读量:1101
Python: Sleep the Program
import time
print("Start time: {}".format(time.ctime()))
# sleeping code
time.sleep(3)
print("End time: {}".format(time.ctime()))
相关标签