map #自定义map函数 def map_test(func, list): res = [] for item in list: res.append(func(item)) return res def add_one(x): return x + 1 a = [1, 2, 3] print(map_test(add_one, a)) print(map_test(lambda x:x + 1, a)) #终极版本 #python中的内置函数map(),功能同上 print('python…