Python学习笔记之三:lambda表达式,filter函数,map函数

1、lambda表达式

def a(x):
        return 2 * x + 1
相当于

a = lambda x : 2 * x + 1

对于使用次数很少的函数,可以用lambda表达式,就不用特地给函数命名了。

2、filter函数

filter(function,iterable)
将可迭代序列iterable(如列表)的元素依次作为参数传入function中运算,返回运算结果为True的可迭代序列iterable中的元素。
def odd(x):
        return x % 2
temp = range(10)
show = filter(odd, temp)
list(show)
结果为:[1,3,5,7,9],也可以使用

list(filter(lambda x : x % 2, range(10)))

3、map函数

map(function, iterable)
与filter类似,但返回的是全部可迭代序列经过function运算后得到的结果,如:

list(map(lambda x : x * 2, range(10)))

结果为:[0, 2, 4, 6, 8, 10, 12, 14, 16, 18]





  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值