python 2.4中两个日期之间的天数
这将在 python 2.6 中工作
from datetime import datetime
print (datetime.strptime('2008-12-31', "%Y-%m-%d")- datetime.strptime('2007-04-30',"%Y-%m-%d")).days
,但在 2.4 中显示以下错误
AttributeError: type object 'datetime.datetime' has no attribute 'strptime'
感谢您的支持。
从日期时间导入日期 从时间导入 strptime
x= strptime('2008-12-31', "%Y-%m-%d")
y= strptime('2007-04-30', "%Y-%m-%d")
print (date(x.tm_year,x.tm_mon,x.tm_mday)- date(y.tm_year,y.tm_mon,y.tm_mday)).days
This will work in python 2.6
from datetime import datetime
print (datetime.strptime('2008-12-31', "%Y-%m-%d")- datetime.strptime('2007-04-30',"%Y-%m-%d")).days
But in 2.4 shows following error
AttributeError: type object 'datetime.datetime' has no attribute 'strptime'
Thank you for all your Support.
from datetime import date
from time import strptime
x= strptime('2008-12-31', "%Y-%m-%d")
y= strptime('2007-04-30', "%Y-%m-%d")
print (date(x.tm_year,x.tm_mon,x.tm_mday)- date(y.tm_year,y.tm_mon,y.tm_mday)).days
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Python 2.4 中,strptime 位于 time 模块中:
请参阅 http://docs。 python.org/release/2.4/lib/module-time.html
In Python 2.4 strptime is located in time module:
See http://docs.python.org/release/2.4/lib/module-time.html