Skip to content

可用于元组的内置函数

内置函数 max()min()sum() 可用于分别计算元组中项的最大值、最小值和总和。

python
>>> t = (4, 8, 2, 1, 3)
>>> min(t)
1
>>> max(t)
8
>>> sum(t)
18