阅读量:2
Python嵌套列表的输出方法有多种,取决于输出的格式和需求。以下是一些常见的方法:
使用循环:
- 使用嵌套的for循环遍历列表的每个元素,并使用print语句输出每个元素。
- 示例代码:
nested_list = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] for sublist in nested_list: for item in sublist: print(item, end=' ') print()
使用列表推导式:
- 使用嵌套的列表推导式将嵌套列表展开,并用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)
这些方法可以根据具体的需求选择使用。