本文实例讲述了Python中max函数用法。分享给大家供大家参考。具体如下:
这里max函数是Python内置的函数,不需要导入math模块
1
2
3
4
5
6
7
8
9
10
11
|
# 最简单的
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程序设计有所帮助。