1、当前时间对应的数字
time.time() 会返回 从 1970年1月1日0点 到 此时此刻 经过的秒数 ,可以简称为秒数时间。
import time
before = time.time()
func1()
after = time.time()
print(f"调用func1,花费时间{after-before}")
可以计算出函数 func1 执行的时间
2、指定格式字符串显示时间
以指定格式字符串显示时间,是非常常用的,比如日志里面的时间戳。
要得到 当前时间 对应的字符串,可以这样实现:
from datetime import datetime
print(str(datetime.now()))
返回结果类似这样:2023-06-30 23:10:08.911420
指定输出的时间格式,如下 :
from datetime import datetime
showtime = datetime.now().strftime('%Y-%m-%d / %H:%M:%S')
print(showtime
返回结果类似这样:2023-05-25 / 19:35:51
import time
showt = time.strftime('%Y-%m-%d %H:%M:%S',time.localtime())
print(showt)