我不明白为什么这会失败,有人可以解释一下:
import datetime
def test(timestamp):
xt = datetime(2013, 4,4)
dt = datetime.strptime(timestamp, '%d/%m/%Y %H:%M:%S')
print (xt,dt)
test('04/04/2013 08:37:20')
错误是:
回溯(最近一次通话最后): 文件“”,第 12 行,在 文件“”,第 5 行,在测试中 TypeError:“模块”对象不可调用
from datetime import datetime
相反,它似乎可以正常工作。我不明白有什么区别。
谢谢。