python获取当前时间 格式

from datetime import datetime 

 

now = datetime.now()  
print(now.strftime('%Y-%m-%d'))   #2022-01-11 年月日
print(now.strftime('%Y-%m-%d %H:%M:%S'))  #2022-01-11 11:07:51  年月日 时分秒
 
posted @ 2022-01-11 11:23  猴年马月  阅读(154)  评论(0编辑  收藏  举报