border_points = border[89:99].points 'list' object has no attribute 'points'
时间: 2024-01-30 20:03:32 浏览: 130
python报错: list object has no attribute shape的解决
根据提供的引用内容,你遇到了两个不同的错误:
1. AttributeError: 'Document' object has no attribute '_getXrefLength'
这个错误是由于在Document对象中找不到名为'_getXrefLength'的属性导致的。可能是你在使用Document对象时出现了错误的方法或属性调用。你可以检查一下你的代码,确保正确地使用了Document对象的方法和属性。
2. 'list' object has no attribute 'points'
这个错误是由于在列表对象上调用'points'属性时出现的。根据错误信息,你正在尝试访问一个名为'points'的属性,但是该属性在列表对象上不存在。你可以检查一下你的代码,确保你正在使用正确的对象和属性。
以下是两个可能导致错误的代码示例:
1. AttributeError: 'Document' object has no attribute '_getXrefLength'
```python
doc = Document('example.docx')
length = doc._getXrefLength() # 错误的方法调用
```
2. 'list' object has no attribute 'points'
```python
border = [1, 2, 3, 4, 5]
border_points = border[89:99].points # 错误的属性调用
```
阅读全文