'''
python中常见的内置函数
'''
"""
max,找出工资最高的那个人
"""
salaries={
'egon':3000,
'alex':100000000,
'wu':10000,
'yuan':2000
}
res = max(salaries, key=lambda x: salaries[x])
print(res) # alex
"""
sorted,按字典中的value进行排序
"""
res2 = sorted(salaries, key=lambda x: salaries[x],reverse=True)
print(res2) # ['alex', 'wu', 'egon', 'yuan']
"""
map
map(function, iterable, ...)
Map applies a function to all the items in an input_list, and return a map object,like generator
"""
l=[1,2,3]
a = map(lambda x: x**2, l)
print(list(a)) # [1, 4, 9]
"""
filter
filter(function, iterable)
filter creates a list of elements for which a function returns true
"""
salaries={
'egon':3000,
'alex':100000000,
'wu':10000,
'yuan':2000
}
#通过filter函数输出工资大于10000的人名
c = filter(lambda m: salaries[m] > 100000,salaries)
print(list(c)) # ['alex']
"""
reduce
reduce(function, iterable)
Reduce is a really useful function for performing some computation on a list and returning the result.
"""
from functools import reduce
l=[1, 2, 3]
b = reduce(lambda x,y: x+y,l)
print(b) # 6
python常见内置函数
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Pre-conditions: Import all PyQt libs into Python project(...
- #####1.局部变量&全局变量局部变量是在函数内部定义的,全局变量是在函数的外部定义的,在函数的内部可以访问全局...