module 'pandas.core.strings' has no attribute 'StringMethods'
时间: 2023-07-23 07:20:54 浏览: 247
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误通常是因为您使用的 Pandas 版本太低而导致的。在较旧的版本中,`StringMethods` 属性可能不存在。建议您将 Pandas 升级到最新版本,可以使用以下命令:
```
pip install --upgrade pandas
```
如果您已经使用了最新版本的 Pandas,那么可能是因为您的代码中存在其他问题,请检查您的代码并确保它是正确的。
阅读全文