Python查询元组元素最大最小值
时间: 2023-08-27 20:14:30 浏览: 106
数组{1,3,5,-2,4,6},要求获取:最大值、最小值、元素和、平均
可以使用Python内置的max()和min()函数来查询元组中的最大值和最小值,例如:
```python
my_tuple = (1, 2, 3, 4, 5)
tuple_max = max(my_tuple)
tuple_min = min(my_tuple)
print("元组中的最大值为:", tuple_max)
print("元组中的最小值为:", tuple_min)
```
输出结果为:
```
元组中的最大值为: 5
元组中的最小值为: 1
```
需要注意的是,元组中的元素必须是可比较的,否则会抛出TypeError异常。
阅读全文