在某些情况下,我们的团队必须使用Python 2.4.1。 Python 2.4.1中的strptime
模块中不存在datetime.datetime
:
Python 2.4.1 (#65, Mar 30 2005, 09:13:57) [MSC v.1310 32 bit (Intel)]
Type "help", "copyright", "credits" or "license" for more information.
>>> import datetime
>>> datetime.datetime.strptime
Traceback (most recent call last):
File "<string>", line 1, in <fragment>
AttributeError: type object 'datetime.datetime' has no attribute 'strptime'
与2.6相反:
Python 2.6.6 (r266:84297, Aug 24 2010, 18:46:32) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import datetime
>>> datetime.datetime.strptime
<built-in method strptime of type object at 0x1E1EF898>
在输入时,我在2.4.1的时间模块中找到了它:
Python 2.4.1 (#65, Mar 30 2005, 09:16:17) [MSC v.1310 32 bit (Intel)]
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> time.strptime
<built-in function strptime>
我认为strptime
在某个时候移动了吗?检查这样的事情的最佳方法是什么。我尝试查看python的发布历史但找不到任何内容。
答案 0 :(得分:19)
请注意,strptime
模块仍在time
模块中,即使是从2.7.1开始,也在datetime
中。
但是,如果您查看最新版本中的documentation for datetime,则会在strptime
下看到此内容:
这相当于
datetime(*(time.strptime(date_string, format)[0:6]))
所以你可以使用那个表达式。请注意,相同的条目也会显示“版本2.5中的新功能”。
答案 1 :(得分:11)
我也有类似的问题。
根据Daniel的回答,当你不确定脚本将在哪个Python版本(2.4 vs 2.6)下运行时,这对我有用:
from datetime import datetime
import time
if hasattr(datetime, 'strptime'):
#python 2.6
strptime = datetime.strptime
else:
#python 2.4 equivalent
strptime = lambda date_string, format: datetime(*(time.strptime(date_string, format)[0:6]))
print strptime("2011-08-28 13:10:00", '%Y-%m-%d %H:%M:%S')
-Fi
答案 2 :(得分:1)
新方法通常记录在库参考中,“新闻自版本......” 我不记得方法已经消失或被删除......这将是向后兼容犯规。需要删除的方法通常会在DeprecationWarning中被弃用。