在Python中,将函数应用于列表列表可以使用列表推导式或循环遍历的方式实现。
示例代码:
original_list = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
# 将每个子列表中的元素平方
new_list = [[x**2 for x in sublist] for sublist in original_list]
print(new_list)
输出结果:
[[1, 4, 9], [16, 25, 36], [49, 64, 81]]
在上述示例中,原始列表original_list
包含三个子列表。通过列表推导式,我们将每个子列表中的元素平方,并生成了一个新的列表new_list
。
示例代码:
original_list = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
new_list = []
for sublist in original_list:
new_sublist = []
for item in sublist:
new_sublist.append(item**2)
new_list.append(new_sublist)
print(new_list)
输出结果:
[[1, 4, 9], [16, 25, 36], [49, 64, 81]]
在上述示例中,我们使用嵌套的循环遍历每个子列表,并将每个元素平方后添加到新的子列表new_sublist
中。然后,将新的子列表添加到最终的新列表new_list
中。
无论是使用列表推导式还是循环遍历,都可以将函数应用于Python中的列表列表。具体选择哪种方式取决于个人偏好和代码的复杂性。
领取专属 10元无门槛券
手把手带您无忧上云