Python教程

python:max

本文主要是介绍python:max,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

本文目录

    • max
      • 1. python内置函数
      • 2. 自定义函数
      • 3. 匿名函数
      • 4. 一些方法

max

max(iterable, *[key, default])

max(arg1, arg2, args[, key])

返回迭代对象中的最大值,其中key参数的作用是对迭代对象中的每个元素先用key指定的函数进行处理,然后取最大值

Return the largest item in an iterable or the largest of two or more arguments.

其中key指定的函数可以是库里的,也可以是自定义的

1. python内置函数

list_ = [1, 3, 6, 4, -5, -10]
max(list_, key=abs)
'''
-10
'''

2. 自定义函数

def func(x):
    return abs(x)
list_ = [1, 3, 6, 4, -5, -10]
max(list_, key=func)
'''
-10
'''

3. 匿名函数

list_ = [1, 3, 6, 4, -5, -10]
max(list_, key=lambda x:abs(x))
'''
-10
'''

4. 一些方法

# 找出出现次数最多的数
list_ = [1, 3, 6, 6, -5, -10]
max(list_, key=list_.count)
'''
6
'''
这篇关于python:max的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!