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

参数形式

  • 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('优快云')
'C'

拓展阅读

max()

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值