了解地图功能

时间:2019-10-19 21:31:17

标签: python python-3.x

与python中的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()返回的内容吗?如果不返回,该函数是什么样的?

0 个答案:

没有答案