2021-07-16
Python中map容器的用法>>> def square(x) : # 计算平方数... return x ** 2...>>> map(square, [1,2,3,4,5]) ># 计算列表各个元素的平方<map object at 0x100d3d550> # 返回迭代器>>> lis