python之map

python之Map函数

 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# map()函数使用举例
# 功能:map()接受一个函数f和一个或多个list,将f依次作用在list的每个元素,得到一个新的列表
# 语法:map(方法名,列表,[列表2])
# 注意:map()函数的返回值需要强制转换成list类型,且不改变原列表值
 
list_1 = [12345]
list_2 = [12345]
 
 
# 单个参数
def double_function(number):
    return number * 2
 
 
list_result = list(map(double_function, list_1))
print("单参数map结果:", list_result)
 
 
# 多个参数
def multiply_function(m, n):
    return * n
 
 
list_result = list(map(multiply_function, list_1, list_2))
print("多参数map结果:", list_result)

 运行结果:

1
2
单参数map结果: [246810]
多参数map结果: [1491625]

posted on 2018-05-09 13:51  小孩没穿鞋  阅读(142)  评论(0编辑  收藏  举报

导航