1

这将适用于 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
4

1 回答 1

7

在 Python 2.4 中,strptime 位于 time 模块中:

from time import strptime

http://docs.python.org/release/2.4/lib/module-time.html

于 2011-05-31T11:38:21.277 回答