Python3 列表
min() 方法返回列表元素中的最小值。
min()方法语法:
min(list)
返回列表元素中的最小值。
以下实例展示了 min()函数的使用方法:
#!/usr/bin/python3 list1, list2 = ['Google', 'Runoob', 'Taobao'], [456, 700, 200] print ("list1 最小元素值 : ", min(list1)) print ("list2 最小元素值 : ", min(list2))
以上实例输出结果如下:
list1 最小元素值 : Google list2 最小元素值 : 200
Python3 列表