将函数应用于列表列表可以通过使用循环或者高阶函数来实现。
def apply_function_to_list_of_lists(func, list_of_lists):
result = []
for lst in list_of_lists:
temp = []
for item in lst:
temp.append(func(item))
result.append(temp)
return result
示例用法:
def square(x):
return x ** 2
list_of_lists = [1, 2, 3, 4, 5, 6, 7, 8, 9]
result = apply_function_to_list_of_lists(square, list_of_lists)
print(result) # [1, 4, 9, 16, 25, 36, 49, 64, 81]
map()
和lambda
表达式。map()
函数接受一个函数和一个可迭代对象,并将函数应用于可迭代对象的每个元素,返回一个新的可迭代对象。
def apply_function_to_list_of_lists(func, list_of_lists):
return list(map(lambda lst: list(map(func, lst)), list_of_lists))
示例用法与上述相同。
这样,无论是使用循环还是高阶函数,都可以将函数应用于列表列表,并得到相应的结果。
领取专属 10元无门槛券
手把手带您无忧上云