码迷,mamicode.com
首页 > 其他好文 > 详细

当前时间&格式化时间

时间:2019-11-21 22:47:45      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:格式   nbsp   现在   code   now()   pre   strftime   port   imp   

1 import datetime
2 now_time = datetime.datetime.now()
3 strf_time = datetime.datetime.now().strftime(%Y-%m-%d %H:%M:%S)
4 new_time = datetime.datetime.now().strftime(%F %T)
5 tomorrowTime = (datetime.datetime.now()+datetime.timedelta(days=1)).strftime(%Y-%m-%d %H:%M:%S)
6 print(现在时间是%s % now_time)
7 print(现在的格式化时间是%s % strf_time)
8 print(现在的格式化时间是%s % new_time)
9 print(明天是%s % tomorrowTime)

 

当前时间&格式化时间

标签:格式   nbsp   现在   code   now()   pre   strftime   port   imp   

原文地址:https://www.cnblogs.com/hujc/p/11908708.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!