python2.7 import datetime后报错AttributeError: ' builtin function or method' object has no attribute ' strftime '
时间: 2024-06-01 20:06:33 浏览: 262
Python中的strftime()方法支持的日期时间格式形式
当你使用Python 2.7中的 datetime 模块时,如果你尝试在 datetime 对象上使用 strftime() 方法却发现出现了 AttributeError: 'builtin function or method' object has no attribute 'strftime' 的错误,这通常意味着你在代码中意外地使用了 datetime 作为变量名,这样会覆盖掉原有的 datetime 模块。
你可以检查一下代码中是否存在类似如下的语句:
```python
datetime = some_function()
```
如果存在类似的代码,请将其修改为其它变量名,并重新运行程序即可。另外,建议使用 Python 3.x 版本,因为 Python 2.7 已经不再更新,也不再受到支持。
阅读全文