Python3 List min()方法
Python 3 教程
· 2019-02-06 11:43:27
描述
min() 方法返回列表元素中的最小值。
语法
min()方法语法:
min(list)
参数
- list -- 要返回最小值的列表。
返回值
返回列表元素中的最小值。
实例
以下实例展示了 min()函数的使用方法:
#!/usr/bin/python3
list1, list2 = ['Google', 'Codercto', 'Taobao'], [456, 700, 200]
print ("list1 最小元素值 : ", min(list1))
print ("list2 最小元素值 : ", min(list2))
以上实例输出结果如下:
list1 最小元素值 : Google list2 最小元素值 : 200
点击查看所有 Python 3 教程 文章: https://www.codercto.com/courses/l/10.html
MATLAB智能算法30个案例分析
史峰、王辉、胡斐、郁磊 / 北京航空航天大学出版社 / 2011-7-1 / 39.00元
MATLAB智能算法30个案例分析,ISBN:9787512403512,作者:史峰,王辉 等编著一起来看看 《MATLAB智能算法30个案例分析》 这本书的介绍吧!