python报错:AttributeError: 'builtin_function_or_method' object has no attribute 'strftime'
时间: 2023-08-02 21:10:02 浏览: 73
Python Attributes and Methods
这个错误通常是因为你在尝试在一个不支持 strftime 方法的对象上调用它。strftime 是 datetime 类的一个方法,它可以将日期时间对象格式化为字符串。
你可以检查一下你在哪里使用了 strftime 方法,看一下它的对象是什么类型。如果对象不是 datetime 类型,那么就会出现这个错误。
另外也可以检查一下你的代码中是否有跟 datetime 同名的变量或方法,这也可能导致这个错误的发生。
阅读全文