- 博客(6)
- 收藏
- 关注
原创 reduce函数
小练习num_1=[1,2,3,100]def reduce_test(func,array,init=None): if init is None: res = array.pop(0) else: res=init for num in array: res=func(res,num) return(res)...
2019-11-27 12:33:49 254
原创 filter函数
小练习movie_people=['sb_alex','sb_wupeiqi','lihaifeng']# def sb_show(n):# return n.startswith('sb')def filter_test(func,array): ret=[] for p in array: if not func(p): ...
2019-11-27 11:00:41 1233
原创 map函数
小练习num_1=[1,2,3,4,5]res=[]for i in num_1: res.append(i**2)print(res)#输出[1, 4, 9, 16, 25]num_1=[1,2,3,4,5]def add_1(x): return x+1def reduce_1(x): return x-1def map_test(func,a...
2019-11-20 21:21:58 327
原创 函数式编程
编程的方法论:面向过程:把一个大问题分解成若干小问题去解决def cal(x): res=2*x res+=1 return res函数式编程:函数式=编程语言定义的函数+数学意义的函数,python不是完全意义上的函数式编程,了解即可def cal(x): return 2*x+1面向对象注意:一定要区别这两个def calc(x): r...
2019-11-19 17:38:53 235
原创 匿名函数lambda
匿名函数fuc=lambda x:x+1a=fuc(10)print(a)def change_name(name): res=name+'_sb' return resprint(change_name('alex'))fuc=lambda name:name+'_sb' #自动returna=fuc('alex')print(a)#输出11alex_s...
2019-11-18 21:51:04 95
原创 函数的作用域
函数的作用域def test1(): print('in the test1')def test(): print('in the test') return 1res=test()print(res)in the test1def test1(): print('in the test1')def test(): print('in t...
2019-11-18 16:26:15 120
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人