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):结果为:[1,3,5,7,9],也可以使用
return x % 2
temp = range(10)
show = filter(odd, temp)
list(show)
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]