'list' object has no attribute 'max'
时间: 2023-11-05 18:05:30 浏览: 260
python报错: 'list' object has no attribute 'shape'的解决
5星 · 资源好评率100%
'list' object has no attribute 'max'意味着列表对象没有max()这个属性和方法。在Python中,列表对象没有内置的max()方法来找到列表中的最大值。相反,我们可以使用内置的max()函数来找到列表中的最大值。例如,使用max()函数可以找到列表中的最大值:
```python
my_list = [1, 2, 3, 4, 5]
max_value = max(my_list)
print(max_value)
```
输出:
```python
5
```
阅读全文