将当前日期格式化
1. 使用datetime
import datetime
datetime.datetime.now().strftime( "%Y-%m-%d %H:%M:%S" )```
2. 使用time
import time
time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
python3时间日期格式化符号:
标签:-%,格式化,python,datetime,日期,time,import,strftime
来源: https://blog.csdn.net/weixin_42361056/article/details/121608763