标签: python python-3.x
与python中的map函数最接近的等效项是什么?例如:
map
def my_map(func, arg_list): return [func(arg) for arg in arg_list] def my_squared_func(arg): return arg * arg my_map(func=squared, arg_list=[1,2,3,4,5]) [1, 4, 9, 16, 25]
大约是map()返回的内容吗?如果不返回,该函数是什么样的?
map()