位置: 编程技术 - 正文
推荐整理分享Python max内置函数详细介绍(python内置函数format),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:python内置函数all,python内置函数enumerate,python内置函数import,python内置函数 map,python内置函数 map,python内置函数lambda,python内置函数max,python内置函数lambda,内容如对您有帮助,希望把文章链接给更多的朋友!
Python max内置函数
max(iterable, *[, key, default])
max(arg1, arg2, *args[, key])
Return the largest item in an iterable or the largest of two or more arguments.
If one positional argument is provided, it should be an iterable. The largest item in the iterable is returned. If two or more positional arguments are provided, the largest 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 maximal, the function returns the first one encountered. This is consistent with other sort-stability preserving tools such as sorted(iterable, key=keyfunc, reverse=True)[0] and heapq.nlargest(1, iterable, key=keyfunc).
说明:
1. 函数功能为取传入的多个参数中的最大值,或者传入的可迭代对象元素中的最大值。默认数值型参数,取值大者;字符型参数,取字母表排序靠后者。还可以传入命名参数key,其为一个函数,用来指定取最大值的方法。default命名参数用来指定最大值不存在时返回的默认值。
2. 函数至少传入两个参数,但是有只传入一个参数的例外,此时参数必须为可迭代对象,返回的是可迭代对象中的最大元素。
3. 当传入参数为数据类型不一致时,传入的所有参数将进行隐式数据类型转换后再比较,如果不能进行隐式数据类型转换,则会报错。
4. 当存在多个相同的最大值时,返回的是最先出现的那个最大值。
5. 默认数值型参数,取值大者;字符型参数,取字母表排序靠后者;序列型参数,则依次按索引位置的值进行比较取最大者。还可以通过传入命名参数key,指定取最大值方法。
6. key参数的另外一个作用是,不同类型对象本来不能比较取最大值的,传入适当的key函数,变得可以比较能取最大值了。
7. 当只传入的一个可迭代对象时,而且可迭代对象为空,则必须指定命名参数default,用来指定最大值不存在时,函数返回的默认值。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
Python切换pip安装源的方法详解 一、pip简介Pip是安装python包的工具,提供了安装包,列出已经安装的包,升级包以及卸载包的功能。Pip是对easy_install的取代,提供了和easy_install相同的
Python数据分析之真实IP请求Pandas详解 前言pandas是基于Numpy构建的含有更高级数据结构和工具的数据分析包类似于Numpy的核心是ndarray,pandas也是围绕着Series和DataFrame两个核心数据结构展开的。
Python Paramiko模块的安装与使用详解 一、前言常见的解决方法都会需要对远程服务器必要的配置,如果远程服务器只有一两台还好说,如果有N台,还需要逐台进行配置,或者需要使用代码
标签: python内置函数format
本文链接地址:https://www.jiuchutong.com/biancheng/383478.html 转载请保留说明!上一篇:Python中的日期时间处理详解(python 系统日期)
友情链接: 武汉网站建设