python:输出当前时间的两种方法
1.使用date.now(),然后输入年月日时分秒
2.使用strftime,按%Y%m%d %H%M%S
from datetime import datetime dt = datetime.now() print(f'今天是:{dt.year}年{dt.month}月{dt.day}日 {dt.hour}:{dt.minute}:{dt.second}') print(dt.strftime('今天是:%Y年%m月%d日 %H:%M:%S'))
1.使用date.now(),然后输入年月日时分秒
2.使用strftime,按%Y%m%d %H%M%S
from datetime import datetime dt = datetime.now() print(f'今天是:{dt.year}年{dt.month}月{dt.day}日 {dt.hour}:{dt.minute}:{dt.second}') print(dt.strftime('今天是:%Y年%m月%d日 %H:%M:%S'))