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)
得到结果 [‘1hello’,'2hello','3hello','4hello',....]
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)
得到结果 [‘1hello’,'2hello','3hello','4hello',....]