'list' object has no attribute 'shape'\
时间: 2024-04-12 20:25:58 浏览: 134
python报错: 'list' object has no attribute 'shape'的解决
5星 · 资源好评率100%
这个错误提示表明在Python中,列表对象没有shape属性。shape属性通常用于表示数组或矩阵的维度。如果你想获取列表的长度,可以使用len()函数。下面是一个示例代码:
```python
my_list = [1, 2, 3, 4, 5]
length = len(my_list)
print("Length of the list: ", length) # 输出:5
```
阅读全文