AttributeError: 'str' object has no attribute 'time'
时间: 2023-06-22 17:21:40 浏览: 234
成功解决AttributeError: 'str' object has no attribute 'to'
这个错误通常是因为字符串类型无法调用time()方法造成的。请确保row[3].value是一个datetime类型的对象。
你可以尝试将row[3].value转换为datetime类型,例如:
```
datetime_obj = datetime.datetime.strptime(row[3].value, '%Y-%m-%d %H:%M:%S')
row_time = datetime_obj.time()
```
这里假设row[3].value的格式为'YYYY-MM-DD HH:MM:SS',你可以根据实际情况修改格式化字符串。
阅读全文