Home >Backend Development >Python Tutorial >python获取一组数据里最大值max函数用法实例

python获取一组数据里最大值max函数用法实例

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-06 11:17:512540browse

本文实例讲述了python获取一组数据里最大值max函数用法。分享给大家供大家参考。具体如下:

# 最简单的
max(1, 2)
max('a', 'b')
# 也可以对列表和元组使用
max([1,2])
max((1,2))
# 还可以指定comparator function
max('ah', 'bf', key=lambda x: x[1])
def comparator(x):
  return x[1]
max('ah', 'bf', key=comparator)

希望本文所述对大家的Python程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn