Home  >  Article  >  Backend Development  >  Python中max函数用法实例分析

Python中max函数用法实例分析

WBOY
WBOYOriginal
2016-06-10 15:09:092459browse

本文实例讲述了Python中max函数用法。分享给大家供大家参考。具体如下:

这里max函数是Python内置的函数,不需要导入math模块

# 最简单的
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