from time import strftime, localtime
date = strftime("%Y-%m-%d %H:%M:%S", localtime())
print(date)
输出结果
2020-01-03 17:50:42
from time import strftime, localtime
date = strftime("%Y-%m-%d %H:%M:%S", localtime())
print(date)
输出结果
2020-01-03 17:50:42