import datetime
print datetime.strptime("00", "%y").year
我希望能够将“00”传递给 datetime.strptime 并接收“2000”作为输出。但是,当我运行代码时,我不断收到此错误: AttributeError: 'module' object has no attribute 'strptime'
strptime
不是直接在datetime模块级别找到的。它是datetime 模块中datetime类型的类方法,所以:
print datetime.datetime.strptime("00", "%y").year