python time函数计算用户在线时间差,Python实现计算两个时间之间相差天数的方法...

本文实例讲述了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.gimoo.net/jisuanqi/date_jisuanqi

在线万年历日历:http://tools.gimoo.net/bianmin/wannianli

在线阴历/阳历转换工具:http://tools.gimoo.net/bianmin/yinli2yangli

更多关于Python相关内容感兴趣的读者可查看本站专题:《Python日期与时间操作技巧总结》、《Python URL操作技巧总结》、《Python图片操作技巧总结》、《Python数据结构与算法教程》、《Python Socket编程技巧总结》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》

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

插入排序_Python与PHP的实现版(推荐)

插入排序Python实现importrandoma=[random.randint(1,999)forxinrange(0,36)]#直接插入排序算法definsertionSort(a):foriinrange(1,len(a)):#若下标为i的元素小于下标为i-1的元素,

python 第三方库的安装及pip的使用详解

python是一款简单易用的编程语言,特别是其第三方库,能够方便我们快速进入工作,但其第三方库的安装困扰很多人.现在安装python时,已经能自动安装p

老生常谈Python进阶之装饰器

函数也是对象要理解Python装饰器,首先要明白在Python中,函数也是一种对象,因此可以把定义函数时的函数名看作是函数对象的一个引用。既然是引用

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值