python 'list' object has no attribute 'T'
时间: 2023-12-09 20:36:17 浏览: 228
python报错: 'list' object has no attribute 'shape'的解决
5星 · 资源好评率100%
当Python抛出“'list' object has no attribute 'T'”的AttributeError时,这意味着您正在尝试访问列表对象中不存在的属性或方法“T”。因此,Python无法识别该属性或方法并引发异常。请注意,列表对象没有名为“T”的属性或方法。
以下是一个例子,演示了当您尝试访问列表对象中不存在的属性或方法时,Python会引发的AttributeError异常:
```python
my_list = [1, 2, 3]
my_list.T
```
输出:
```
AttributeError: 'list' object has no attribute 'T'
```
阅读全文