首页 > 编程 > Python > 正文

python编程开发之日期操作实例分析

2020-01-04 17:57:13
字体:
来源:转载
供稿:网友

这篇文章主要介绍了python编程开发之日期操作,以实例形式较为详细的分析了Python中datetime与time库的相关使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了python编程开发之日期操作。分享给大家供大家参考,具体如下:

在python中对日期进行操作的库有:

import datetime

import time

对日期格式化信息,可以参考官方API:

time.strftime

datetime

下面是我做的demo:

 

 
  1. #datetime 
  2. import datetime 
  3. #当前日期 
  4. now = datetime.datetime.now() 
  5. print(now.strftime('%Y-%m-%d %H:%M:%S')) 
  6. print(now.strftime('%Y-%m-%d')) 
  7. #string convert to datetime 
  8. time_str = '2013-07-29 01:05:00' 
  9. str_convert_2_time = datetime.datetime.strptime(time_str, '%Y-%m-%d %H:%M:%S'
  10. print(str_convert_2_time) 
  11. #比较两个日期相差多少天 
  12. time_strA = '2013-07-29 01:05:00' 
  13. time_strB ='2013-08-29 01:05:00' 
  14. day = datetime.datetime.strptime(time_strA, '%Y-%m-%d %H:%M:%S'
  15. day2 = datetime.datetime.strptime(time_strB, '%Y-%m-%d %H:%M:%S'
  16. sub_day = day2 - day 
  17. print('{0}和{1}相差{2}天'.format(time_strA, time_strB, str(sub_day.days))) 
  18. #今后的n天的日期 
  19. n_days = 4 
  20. now = datetime.datetime.now() 
  21. my_date = datetime.timedelta(days=n_days)  
  22. n_day = now + my_date 
  23. print('从今天起的{0}天的日期是:'.format(n_days)) 
  24. print(n_day.strftime('%Y-%m-%d %H:%M:%S')) 

运行效果:

 

 
  1. Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (Intel)] on win32 
  2. Type "copyright""credits" or "license()" for more information. 
  3. >>> ================================ RESTART ================================ 
  4. >>>  
  5. 2013-07-29 01:48:16 
  6. 2013-07-29 
  7. 2013-07-29 01:05:00 
  8. 2013-07-29 01:05:00和2013-08-29 01:05:00相差31天 
  9. 从今天起的4天的日期是: 
  10. 2013-08-02 01:48:16 
  11. >>> 

希望本文所述对大家Python程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表