标签: python datetime
import datetime print datetime.strptime("00", "%y").year
我希望能够将“00”传递给datetime.strptime并接收“2000”作为输出。但是,当我运行代码时,我不断收到此错误: AttributeError:'module'对象没有属性'strptime'
答案 0 :(得分:3)
strptime。它是datetime模块中datetime类型的类方法,因此:
strptime
print datetime.datetime.strptime("00", "%y").year