您的位置:首页 > 编程语言 > Python开发

Python 内建函数 - min(iterable, *[, key, default])

2017-03-20 11:07 561 查看
参数形式

Manual

直译

实例

拓展阅读

参数形式

min(iterable, *[, key, default])

min(arg1, arg2, *args[, key])

Manual

Return the smallest item in an iterable or the smallest of two or more arguments.

If one positional argument is provided, it should be an iterable. The smallest item in the iterable is returned. If two or more positional arguments are provided, the smallest of the positional arguments is returned.

There are two optional keyword-only arguments. The key argument specifies a one-argument ordering function like that used for list.sort(). The default argument specifies an object to return if the provided iterable is empty. If the iterable is empty and default is not provided, a ValueError is raised.

If multiple items are minimal, the function returns the first one encountered. This is consistent with other sort-stability preserving tools such as sorted(iterable, key=keyfunc)[0] and heapq.nsmallest(1, iterable, key=keyfunc).

New in version 3.4: The default keyword-only argument.

直译

除返回值为最小值外,其他具体内容与max()相同。

实例

>>> a = [2, 5, 6, 9]
>>> min(a)
2
>>> max(i for i in range(10))
0

>>> b = []
>>> min(b)
Traceback (most recent call last):
File "<pyshell#36>", line 1, in <module>
min(b)
ValueError: min() arg is an empty sequence
>>> min(b, [1])
[1]

>>> min('CSDN')
'C'


拓展阅读

max()
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python