shaoheshaohe 发表于 2019-3-13 23:04:24

python 3 之map()

ython2 和 python 3 的map()函数
描述:
map() 会根据提供的函数对指定序列做映射。
第一个参数 function 以参数序列中的每一个元素调用 function 函数,返回包含每次 function 函数返回值的新列表。
语法:
map() 函数语法:map(function, iterable, …)
参数:
function – 函数
iterable – 一个或多个序列
返回值:
Python 2.x 返回列表。
Python 3.x 返回迭代器。
示例:
python2:

def square(x) :               # 计算平方数
    return x ** 2
map(square, )   # 计算列表各个元素的平方



python3:

def square(x) :            
    return x ** 2
map(square, )

<map at 0x1acd1c94be0>

python3可将map转换为list:

def square(x) :            # 计算平方数
    return x ** 2
A=list(map(square, ))   # 计算列表各个元素的平方
print(A)




页: [1]
查看完整版本: python 3 之map()