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