描述:
函数功能为取传入的多个参数中的最小值,或者传入的可迭代对象元素中的最小值。
语法:
min(iterable, *[, key, default])
min(arg1, arg2, *args[, key])
参数介绍:
默认数值型参数,取值小者;
字符型参数,取字母表排序靠前者。
key---可做为一个函数,用来指定取最小值的方法。
default---用来指定最小值不存在时返回的默认值。
arg1---字符型参数/数值型参数,默认数值型
返回值:
返回参数的最小值
下面例子展示min()函数使用方法
1、传入多个参数取最小值(元组、列表、集合)
print(min(1,2,3,4,5,6)) #1、传入多个参数取最小值
输出
1
2、传入可迭代对象时,取其元素最小值
s = '23456' #2、传入可迭代对象时,取其元素最小值
print(min(s))
输出
2
3、传入可迭代对象为空时,必须指定参数default,用来返回默认值
print(min((),default=8))# 3、传入可迭代对象为空时,必须指定参数default,用来返回默认值
print(min(()))#报错
输出
8
Traceback (most recent call last):
File "D:/Pythonproject/111/min.py", line 22, in <module>
print(min(()))#报错
ValueError: min() arg is an empty sequence
4、传入命名参数key,其为一个函数,用来指定取最小值的方法(灵活运用,根据字典的键值)
s = [{'name': 'li', 'age': 24},{'name': 'he', 'age': 45} ]
b = min(s, key=lambda x: x['age'])
print(b)
输出
{'name': 'li', 'age': 24}
Python max()函数与该函数功能相反。
本期min()函数就学到这里。