Python 内建的filter()函数用于过滤序列。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 内建的filter()函数用于过滤序列。相关的知识,希望对你有一定的参考价值。

例如,在一个list中,删掉偶数,只保留奇数,可以这么写:

def is_odd(n):
    return n % 2 == 1

list(filter(is_odd, [1, 2, 4, 5, 6, 9, 10, 15]))
# 结果: [1, 5, 9, 15](返回False就过滤掉)

习题:回数是指从左向右读和从右向左读都是一样的数,例如12321909。请利用filter()滤掉非回数:

# -*- coding: utf-8 -*-
from functools import reduce

def is_palindrome(n):
  lenN=len(str(n))
  #print(lenN)
  n=str(n)
  #print(n)
  if lenN<2: return False
  for i in range(lenN//2):
    j=i+1
    if n[i]!=n[-j]:
      return False
  return True

output = filter(is_palindrome, range(1, 100000))
print(list(output))

 

技术分享

 

 















以上是关于Python 内建的filter()函数用于过滤序列。的主要内容,如果未能解决你的问题,请参考以下文章

filter

filter()

Python3之高阶函数filter

Python filter()

Python---filter

Python filter