python map函数

map函数是操作列表使用的例如,接收两个参数,一个是函数,一个是列表。map函数将传入的函数,使用在传入的列表里的每个元素,返回的使一个列表。

1 a = [1,2,3,4,5]
2 
3 def add(num):
4     return str(num)+'hello'
5 
6 b = map(add,a)
View Code

得到结果 [‘1hello’,'2hello','3hello','4hello',....]

 

posted @ 2017-05-23 10:49  破晓e  阅读(309)  评论(0编辑  收藏  举报