Python嵌套列表的输出方法有多种,取决于输出的格式和需求。以下是一些常见的方法:
使用循环:
nested_list = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
for sublist in nested_list:
for item in sublist:
print(item, end=' ')
print()
使用列表推导式:
nested_list = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
flattened_list = [item for sublist in nested_list for item in sublist]
print(flattened_list)
使用递归:
def print_nested_list(nested_list):
for item in nested_list:
if isinstance(item, list):
print_nested_list(item)
else:
print(item)
nested_list = [[1, 2, 3], [4, [5, 6]], [7, 8, 9]]
print_nested_list(nested_list)
这些方法可以根据具体的需求选择使用。