python中几个常用函数

Posted Python热爱者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中几个常用函数相关的知识,希望对你有一定的参考价值。

zip 将两个列表,对应位置的值拼接成元组,最后结果是一个列表套元组,注:不对应的值,会被舍弃.

l1 = [1,1,3,6,7]
l2 = [1,2,3,4]
print(list(zip(l1,l2))) # [(1, 1), (2, 2), (3, 3), (6, 4)]

filter 将列表内的元素,一一传入指定函数,过滤后,获得一个列表类型的结果

l1 = [1,2,3,6,7]
print(list(filter(lambda a:a>2,l1))) # [3, 6, 7]

map 将列表内的值,一一传入指定函数,计算后,获得一个列表类型的结果

l1 = [1,2,3,6,7]
print(list(map(lambda a:a+1,l1))) # [2, 3, 4, 7, 8]

sorted 对列表内的值按升序排列

l1 = [1,2,3,6,7]
print(sorted(l1)) # [1, 2, 3, 6, 7]

reversed 对列表内的值按降序排列

#Python学习交流群:857662006
l1 = [1,2,3,6,7]
print(list(reversed(l1))) # [7, 6, 3, 2, 1]

reduce求和

from functools import reduce
print(reduce(lambda x,y:x+y,l1)) # 19


以上是关于python中几个常用函数的主要内容,如果未能解决你的问题,请参考以下文章

php数组常用函数

python中几大模块二

python中几个常用小技巧

SQL中几个常用的排序函数

关于python中几个函数的用法

unity3dC#的List升序降序排序