Python实现计算两个时间之间相差天数的方法


Posted in Python onMay 10, 2017

本文实例讲述了Python实现计算两个时间之间相差天数的方法。分享给大家供大家参考,具体如下:

#-*- encoding:UTF-8 -*-
from datetime import date
import time
nowtime = date.today()
def convertstringtodate(stringtime):
  "把字符串类型转换为date类型"
  if stringtime[0:2] == "20":
    year=stringtime[0:4]
    month=stringtime[4:6]
    day=stringtime[6:8]
    begintime=date(int(year),int(month),int(day))
    return begintime
  else :
    year="20"+stringtime[0:2]
    month=stringtime[2:4]
    day=stringtime[4:6]
    begintime=date(int(year),int(month),int(day))
    return begintime
def comparetime(nowtime,stringtime):
  "比较两个时间,并返回两个日期之间相差的天数"
  if isinstance(nowtime,date):
    pass
  else:
    nowtime=convertstringtodate(nowtime)
  if isinstance(stringtime,date):
    pass
  else:
    stringtime=convertstringtodate(stringtime)
  result=nowtime-stringtime
  return result.days
"""
  if stringtime[0:2] == "20":
    year=stringtime[0:4]
    month=stringtime[4:6]
    day=stringtime[6:8]
    begintime=date(int(year),int(month),int(day))
    endtime=nowtime
    result=endtime-begintime
    return result.days
  else :
    year="20"+stringtime[0:2]
    month=stringtime[2:4]
    day=stringtime[4:6]
    begintime=date(int(year),int(month),int(day))
    endtime=nowtime
    result=endtime-begintime
    return result.days
"""
print isinstance("20141012",date)
print comparetime(nowtime,"140619")

PS:这里再为大家推荐几款关于日期与天数计算的在线工具供大家使用:

在线日期/天数计算器:
http://tools.3water.com/jisuanqi/date_jisuanqi

在线万年历日历:
http://tools.3water.com/bianmin/wannianli

在线阴历/阳历转换工具:
http://tools.3water.com/bianmin/yinli2yangli

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

Python 相关文章推荐
简单介绍Python中的readline()方法的使用
May 24 Python
bpython 功能强大的Python shell
Feb 16 Python
Python单链表简单实现代码
Apr 27 Python
详谈Python2.6和Python3.0中对除法操作的异同
Apr 28 Python
Django中login_required装饰器的深入介绍
Nov 24 Python
pycharm执行python时,填写参数的方法
Oct 29 Python
python模拟菜刀反弹shell绕过限制【推荐】
Jun 25 Python
python Pandas库基础分析之时间序列的处理详解
Jul 13 Python
PyCharm License Activation激活码失效问题的解决方法(图文详解)
Mar 12 Python
Python 列表推导式需要注意的地方
Oct 23 Python
Python关于OS文件目录处理的实例分享
May 23 Python
python基础之类方法和静态方法
Oct 24 Python
Python开发的实用计算器完整实例
May 10 #Python
Python只用40行代码编写的计算器实例
May 10 #Python
Python实现脚本锁功能(同时只能执行一个脚本)
May 10 #Python
python 3.5下xadmin的使用及修复源码bug
May 10 #Python
Python遍历文件夹和读写文件的实现方法
May 10 #Python
python中requests小技巧
May 10 #Python
Python实现针对中文排序的方法
May 09 #Python
You might like
php Session存储到Redis的方法
2013/11/04 PHP
php中文验证码实现方法
2015/06/18 PHP
php实现简单爬虫的开发
2016/03/28 PHP
PHP7 新增常量
2021/03/09 PHP
js 模拟气泡屏保效果代码
2010/07/10 Javascript
在JavaScript中typeof的用途介绍
2013/04/11 Javascript
node.js中的fs.fsyncSync方法使用说明
2014/12/15 Javascript
javascript检测两个数组是否相似
2015/05/19 Javascript
jQuery遍历节点树方法分析
2016/09/08 Javascript
JS实现禁止鼠标右键的功能
2016/10/15 Javascript
JS基于onclick事件实现单个按钮的编辑与保存功能示例
2017/02/13 Javascript
jquery实现数字输入框
2017/02/22 Javascript
微信小程序 列表的上拉加载和下拉刷新的实现
2017/04/01 Javascript
jQuery Easyui Treegrid实现显示checkbox功能
2017/08/08 jQuery
jQuery中extend函数简单用法示例
2017/10/11 jQuery
D3.js实现简洁实用的动态仪表盘的示例
2018/04/04 Javascript
jquery实现掷骰子小游戏
2019/10/24 jQuery
原生javascript的ajax请求及后台PHP响应操作示例
2020/02/24 Javascript
基于JS正则表达式实现模板数据动态渲染(实现思路详解)
2020/03/07 Javascript
深入讲解Python中面向对象编程的相关知识
2015/05/25 Python
django开发post接口简单案例,获取参数值的方法
2018/12/11 Python
Python中的上下文管理器相关知识详解
2019/09/19 Python
浅谈Python3中print函数的换行
2020/08/05 Python
荷兰本土平价百货:HEMA
2017/10/23 全球购物
NFL墨西哥官方商店:Tienda NFL
2017/11/28 全球购物
澳大利亚领先的皮肤诊所:Skin Matrix(抗衰老、痤疮专家、药妆护肤)
2018/05/20 全球购物
农村婚礼证婚词
2014/01/10 职场文书
会计核算科岗位职责
2014/03/19 职场文书
小学绿色学校申报材料
2014/08/23 职场文书
党员干部观看《周恩来四个昼夜》思想汇报
2014/09/10 职场文书
甲乙双方合作协议书
2014/10/13 职场文书
2014年连锁店圣诞节活动方案
2014/12/09 职场文书
合作与交流自我评价
2015/03/09 职场文书
Java并发编程之详解CyclicBarrier线程同步
2021/06/23 Java/Android
恶魔之树最顶端的三颗果实 震震果实上榜,第一可以制造岩浆
2022/03/18 日漫
CI Games宣布《堕落之王2》使用虚幻引擎5制作 预计将于2023年正式发售
2022/04/11 其他游戏