gpt4 book ai didi

python datetime.strptime 属性错误

转载 作者:行者123 更新时间:2023-11-30 23:38:23 26 4
gpt4 key购买 nike

import datetime

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

我希望能够将“00”传递到 datetime.strptime 并接收“2000”作为输出。但是,当我运行代码时,我不断收到此错误:AttributeError:“模块”对象没有属性“strptime”

最佳答案

strptime 未直接在 datetime 级别找到模块。它是 datetime 的类方法在 datetime 模块中输入,因此:

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

关于python datetime.strptime 属性错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14612948/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com