파이썬에서 필터()
filter()
드 파이썬. 보이시 메스 노트. Pour l'info, je suis ce tutorial de ce 사이트:https://www.liaoxuefeng.com/wiki/1016959663602400/1017404530360000
============= 노트는 여기에서 시작됩니다 =============
와
map()
예, filter()
也接收一个函数和一个序列.和 map()
아니오, filter()
把传入的函数依次作用于每个元素,然后根据返回值是참还是거짓决定保留还是丢弃该元素.### function used for filter() should return result of boolean type
def is_odd(n):
return n % 2 == 1
a = list(filter(is_odd, [1, 2, 4, 5, 6, 9, 10, 15]))
print(a) # 结果: [1, 5, 9, 15]
def not_empty(s):
return s and s.strip()
b = list(filter(not_empty, ['A', '', 'B', None, 'C', ' ']))
print(b) # 结果: ['A', 'B', 'C']
Voici un petit example pour tester.
## check if n is in format such like 121, 1331, 34543, 123321, etc...
def is_palindrome(n):
res = []
while True:
a = n % 10
n = n // 10
res.append(a)
if n == 0 :
break
l = len(res)
bool_res = True
for i in range(0, l//2):
bool_res = bool_res and (res[i] == res[l-i-1])
if not bool_res:
break
return bool_res
### 测试:
output = filter(is_palindrome, range(1, 1000))
print('1~1000:', list(output))
if list(filter(is_palindrome, range(1, 200))) == [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 22, 33, 44, 55, 66, 77, 88, 99, 101, 111, 121, 131, 141, 151, 161, 171, 181, 191]:
print('测试成功!')
else:
print('测试失败!')
Ce que j'ai eu de ce 테스트:
Reference
이 문제에 관하여(파이썬에서 필터()), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jemaloqiu/filter-in-python-3nmk텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)