Python中的Lambda表達式 和filter()函數 Python從入門到放棄

Lambda表達式

def fun_a(x,y=3)函數

    return x*yspa

轉換爲lambda表達式爲ip

lambda x,y=3:x*y字符串

filter()函數

filter()函數是 Python 內置的另外一個有用的高階函數,filter()函數接收一個函數 f 和一個list,這個函數 f 的做用是對每一個元素進行判斷,返回 True或 False,filter()根據判斷結果自動過濾掉不符合條件的元素,返回由符合條件元素組成的新list。test

例如,要從一個list [1, 4, 6, 7, 9, 12, 17]中刪除偶數,保留奇數,首先,要編寫一個判斷奇數的函數:lambda

def is_odd(x):filter

    return x % 2 == 1字符

而後,利用filter()過濾掉偶數:return

>>>filter(is_odd, [1, 4, 6, 7, 9, 12, 17])

結果:

[1, 7, 9, 17]

利用filter(),能夠完成不少有用的功能,例如,刪除 None 或者空字符串:

def is_not_empty(s):

    return s and len(s.strip()) > 0

>>>filter(is_not_empty, ['test', None, '', 'str', '  ', 'END'])

結果:

['test', 'str', 'END']

注意: s.strip(rm) 刪除 s 字符串中開頭、結尾處的 rm 序列的字符。

當rm爲空時,默認刪除空白符(包括'\n', '\r', '\t', ' '),以下:

>>> a = ' 123'
>>> a.strip()
'123'

>>> a = '\t\t123\r\n' >>> a.strip() '123'

相關文章
相關標籤/搜索