文章目录
一、日期
1、time模块
python
import time
方法 | 描述 |
---|---|
time.sleep(secs) | 程序暂停执行指定的秒数 |
python
'''
time.sleep(secs)
参数:
secs:推迟执行的秒数
Delay execution for a given number of seconds. The argument may be
a floating point number for subsecond precision.
'''
time.sleep(1)
方法 | 描述 |
---|---|
time.time() | 返回当前系统时间的时间戳(从1970年1月1日午夜(UTC/GMT)到当前时间的秒数,是一个浮点数,包括秒数和小数部分,小数部分表示更精确的时间。) |
python
'''
time.time()
无参数
Delay execution for a given number of seconds. The argument may be
a floating point number for subsecond precision.
'''
start = time.time()
print(start) # 1720171791.0012453