AttributeError: module 'xlrd' has no attribute 'open_book'怎么改
时间: 2023-09-11 09:07:17 浏览: 157
AttributeError: module 'tensorflow.compat.v1' has no attribute '
在xlrd 2.0.0版本中,`open_book()`方法已经被弃用。你可以使用`open_workbook()`方法替换它。请尝试以下代码:
```python
import xlrd
workbook = xlrd.open_workbook('example.xlsx')
```
如果你使用的是旧版本的xlrd,可以尝试升级到2.0.0版本。如果不能升级,可以使用以下代码:
```python
import xlrd
workbook = xlrd.open_workbook(filename='example.xlsx', on_demand=True)
```
在旧版本中,`open_book()`方法需要指定`filename`参数,而且还需要设置`on_demand=True`参数。
阅读全文