Skip to content

可用于列表的内置函数

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

python
>>> l = [4, 8, 2, 1, 3]
>>> min(l)
1
>>> max(l)
8
>>> sum(l)
18