Appearance
内置函数 max()、min() 和 sum() 可用于分别计算元组中项的最大值、最小值和总和。
max()
min()
sum()
>>> t = (4, 8, 2, 1, 3) >>> min(t) 1 >>> max(t) 8 >>> sum(t) 18