📜  python 如何取消嵌套嵌套列表 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:05.286000             🧑  作者: Mango

代码示例1
# Basic syntax:
unnested_list = list(chain(*nested_list))
# Where chain comes from the itertools package and is useful for 
#    unnesting any iterables

# Example usage:
from itertools import chain
nested_list = [[1,2], [3,4]]
my_unnested_list = list(chain(*nested_list))
print(my_unnested_list)
--> [1, 2, 3, 4]