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