AttributeError: 'WindowsPath' object has no attribute 'read_text'
时间: 2023-11-10 22:04:15 浏览: 537
关于Python 解决Python3.9 pandas.read_excel(‘xxx.xlsx‘)报错的问题
5星 · 资源好评率100%
这个错误通常是因为您正在尝试使用 Python 的 read_text() 方法读取一个 Windows 路径对象,但该方法在 WindowsPath 对象上不可用。您可以使用 open() 函数来代替,例如:
```
with open(path, 'r') as f:
text = f.read()
```
阅读全文