Python计算两个日期相差天数的方法示例 本文实例讲述了Python计算两个日期相差天数的方法。分享给大家供大家参考,具体如下: #!/usr/bin/python import time import sys def dateinput(): date = raw_input('please input the first date: ') return date def datetrans(tdate): spdate = tdate.replace("/","-") try: datesec = time.strptime(spdate,'%Y-%m-%d') except ValueError: print "%s is not a rightful date!!" % tdate sys.exit(1) return time.mktime(datesec) def daysdiff(d1,d2): daysec = 24 * 60 * 60 return int(( d1 - d2 )/daysec) date1 = dateinput() date2 = dateinput() date1sec = datetrans(date1) date2sec = datetrans(date2) print "The number of days between two dates is: ",daysdiff(date1sec,date2sec) PS:这里再为大家推荐几款关于日期与天数计算的在线工具供大家使用: 在线日期/天数计算器: http://tools.zwyuanma.com/jisuanqi/date_jisuanqi 在线万年历日历: http://tools.zwyuanma.com/bianmin/wannianli 在线阴历/阳历转换工具: http://tools.zwyuanma.com/bianmin/yinli2yangli 更多关于Python相关内容感兴趣的读者可查看本站专题:《Python日期与时间操作技巧总结》、《Python URL操作技巧总结》、《Python图片操作技巧总结》、《Python数据结构与算法教程》、《Python Socket编程技巧总结》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》 希望本文所述对大家Python程序设计有所帮助。