1
import datetime

print datetime.strptime("00", "%y").year

我希望能够将“00”传递给 datetime.strptime 并接收“2000”作为输出。但是,当我运行代码时,我不断收到此错误: AttributeError: 'module' object has no attribute 'strptime'

4

1 回答 1

3

strptime不是直接在datetime模块级别找到的。它是datetime 模块中datetime类型的类方法,所以:

print datetime.datetime.strptime("00", "%y").year
于 2013-01-30T20:25:04.037 回答