时间:2024-11-10 07:00:48
导读:python中获取列表最大值 在Python中,可以使用内置函数max来获取列表中的最大值。例如: ```python nums = [3, 6, 1, 8, 2, 3] max_num = max(nums) print(max_......
python中获取列表最大值
在Python中,可以使用内置函数max来获取列表中的最大值。例如:
```python
nums = [3, 6, 1, 8, 2, 3]
max_num = max(nums)
print(max_num) # 8
```
上述代码定义了一个包含多个整数元素的列表nums,然后使用max函数来获取nums中的最大值,并将结果赋值给变量max_num。最后使用print语句输出该变量的值,结果是8。