AttributeError: 'Timestamp' object has no attribute 'strftimr'
时间: 2023-10-07 19:08:01 浏览: 164
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这个错误是由于在 Timestamp 对象上调用了 'strftimr' 属性而导致的。正常情况下,Timestamp 对象没有 'strftimr' 属性。你可能想要调用 'strftime' 方法来格式化 Timestamp 对象,而不是 'strftimr' 属性。请检查你的代码,并确保正确地调用了 'strftime' 方法。如果你需要进一步的帮助,请提供相关代码片段以便更好地理解并解决问题。
阅读全文