码迷,mamicode.com
首页 > 其他好文 > 详细

filter、map函数的区别

时间:2018-05-16 22:45:45      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:调用   htm   imp   映射   返回   utf-8   false   整数   color   

 1 def even(num):
 2     if num%2==0:
 3         return True
 4     return False
 5 lis = [1,2,3,4,5,6,7,8,9]
 6 res = filter(even,lis)
 7 print(filter..,list(res))  #filter只保留,返回为真的数据,过滤list的作用
 8 res2 = map(even,lis)
 9 print(map..,list(res2))  #map是帮你循环调用函数,这个函数返回就保存什么。
10 
11 filter.. [2, 4, 6, 8]
12 map.. [False, True, False, True, False, True, False, True, False]

map() 会根据提供的函数对指定序列做映射。

第一个参数 function 以参数序列中的每一个元素调用 function 函数,返回包含每次 function 函数返回值的新列表。

filter() 函数用于过滤序列,过滤掉不符合条件的元素,返回由符合条件元素组成的新列表。

该接收两个参数,第一个为函数,第二个为序列,序列的每个元素作为参数传递给函数进行判,然后返回 True 或 False,最后将返回 True 的元素放到新列表中。

 

过滤出1~100中平方根是整数的数:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
import math
def is_sqr(x):
    return math.sqrt(x) % 1 == 0
 
newlist = filter(is_sqr, range(1, 101))
print(newlist)

[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]

参考http://www.runoob.com/python/python-func-filter.html

 

filter、map函数的区别

标签:调用   htm   imp   映射   返回   utf-8   false   整数   color   

原文地址:https://www.cnblogs.com/xinjing-jingxin/p/9048005.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!