函數的參數能接收變量,那麼一個函數就能夠接收另外一個函數做爲參數,這種函數就稱之爲高階函數。
注意其中:map和filter返回一個惰性序列,可迭代對象,須要轉化爲listapi
>>> a = 3.1415 >>> round(a,2) 3.14 >>> a_round = round >>> a_round(a,2) 3.14 >>> def func_devide(x, y, f): return f(x) - f(y) #傳遞參數爲函數 print(func_devide(9.3, 3.2, round))
map()函數接收兩個參數,一個是函數,一個是Iterable,map將傳入的函數依次做用到序列的每一個元素,並把結果做爲新的Iterator返回。ide
>>> print(list(map(str, [1, 2, 3]))) ['1', '2', '3'] >>> dt = map(str,[-1,2,3,4,5,-34,-45,-23.454]) >>> dt <map object at 0x10f431dd8> >>> list(dt) ['-1', '2', '3', '4', '5', '-34', '-45', '-23.454'] >>> dt = map(abs,[-1,2,3,4,5,-34,-45,-23.454]) >>> list(dt) [1, 2, 3, 4, 5, 34, 45, 23.454]
注意報錯:TypeError: 'map' object is not callable
通常出現的緣由是迭代對象(str,abs等)或者函數(map)被修改,再也不是原來的函數,致使出現不可迭代對象函數
reduce把一個函數做用在一個序列[x1, x2, x3, ...]上,這個函數必須接收兩個參數,reduce把結果繼續和序列的下一個元素作累積計算。返回的是一個計算的最終結果,函數接收兩個參數:code
def add(x,y): ... return x + y ... >>> reduce(add,[1,2,3,4,5,6,7,8,9,10]) 55 >>> def concate(x,y): ... return str(x)+str(y) ... >>> reduce(concate,[1,2,3,4,5,6,7,8,9,0]) '1234567890'
reduce和map函數結合作字符串轉整型(或者整型轉字符串)對象
>>> str = '12121212132323' >>> dic_str_int = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9} >>> def str_arr(x): ... dic_str_int = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9} ... return dic_str_int[x] ... >>> def int_dum(x,y): ... return 10*x + y ... >>> reduce(int_dum,map(str_arr,str)) 12121212132323
>>> names = ['jack','john','wilianmon','jobs','bill','gates'] >>> def str_upper(string): ... return string.upper() ... >>> names = map(str_upper,names) >>> list(names) ['JACK', 'JOHN', 'WILIANMON', 'JOBS', 'BILL', 'GATES'] >>> def str_capitialize(string): ... return string.capitalize() ... >>> names = ['jack','john','wilianmon','jobs','bill','gates'] >>> >>> names = map(str_capitialize,names) >>> list(names) ['Jack', 'John', 'Wilianmon', 'Jobs', 'Bill', 'Gates']
int_li = [2,3,5,10] >>> reduce(lambda x, y: x*y,int_li) 300 >>> def func_mult(li=None): ... return reduce(lambda x, y: x*y,li) ... >>> func_mult(int_li) 300
上面的能夠根據須要轉成函數,更方便調用字符串
方法一:截斷以後拼接string
def string_int(strs): str_li = strs.split('.') def str_int(str): dic_str_int = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9} return dic_str_int[str] int_1 = reduce(lambda x, y: x*10+y, list( map(str_int,str_li[0]))) int_2 = reduce(lambda x,y: x*10 + y,list(map(str_int,str_li[1]))) return int_1 + int_2/(10**(len(str_li)+1)) res = string_int('123.456') print(res) #結果:123.456
方法二: 轉成純數字字符串it
def string_int1(strs): # 記住位置,替換 point_len = len(strs) - strs.find('.')-1 str_li = strs.replace('.', '') def str_int(str): dic_str_int = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9} return dic_str_int[str] int_num = reduce(lambda x,y: x*10 + y,list(map(str_int,str_li))) return int_num/(10**(point_len)) res = string_int1('123.456') print(res) #結果:123.456
filter()也接收一個函數和一個序列。從一個序列中篩出符合條件的元素。和map()不一樣的是,filter()把傳入的函數依次做用於每一個元素,而後根據返回值是True仍是False決定保留仍是丟棄該元素。
注意:和map函數的區別table
函數名 | 區別 |
---|---|
map | 做用於每一個可迭代對象的元素,並返回處理以後的元素 |
filter | 做用於可迭代內每一個元素,根據計算後結果:True保留,Flase去掉 |
eg: 獲取列表內全部的整數類型元素變量
def only_int(x): try: if isinstance(x, int): return True else: return False except ValueError as e: return False dt = filter(type_int,[1,2,3,3,'3232',-34.5,34.5]) >>> list(dt) [1, 2, 3, 3]
。。。