Python filter sorted

原創轉載請註明出處:http://agilestyle.iteye.com/blog/2330331   Python內置的filter()函數用於過濾序列 過濾偶數 def is_odd(n): return n % 2 == 1 # [1, 3, 5, 7, 9] print(list(filter(is_odd, list(range(1, 10))))) 過濾空字符串 def
相關文章
相關標籤/搜索