AttributeError: module 'datetime' has no attribute 'strptime'
时间: 2023-09-19 13:08:28 浏览: 174
这个错误通常发生在Python2中,因为Python2的datetime模块不支持strptime方法。如果你在Python2中使用了strptime方法,你需要使用time模块的strptime方法来代替。
如果你在Python3中出现了这个错误,那么可能是因为你的datetime模块被其他模块或文件覆盖了,你可以尝试使用完整的模块路径来引用datetime模块,例如:
```python
import datetime
my_date = datetime.datetime.strptime('2019-01-01', '%Y-%m-%d')
```
如果你仍然遇到这个错误,那么你需要检查你的代码中是否有其他重命名了datetime模块的变量或对象。
阅读全文