📜  python 查找列表中的最小值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:25.355000             🧑  作者: Mango

代码示例2
stuff = [37, 7, 19, 29, 5, 13, 31, 17, 23, 11, 3, 2]
print(min(stuff))
# output = 2