attributeerror: 'str' object has no attribute 'strftime'
时间: 2023-04-26 14:02:37 浏览: 724
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误是因为你尝试在一个字符串对象上调用strftime方法,但是字符串对象没有这个方法。strftime是datetime对象的方法,用于将日期时间格式化为字符串。你需要将字符串转换为datetime对象,然后再调用strftime方法。
阅读全文