23

刚开始玩 Python 所以请多多包涵:)

假设以下列表包含嵌套列表:

[[[[[1, 3, 4, 5]], [1, 3, 8]], [[1, 7, 8]]], [[[6, 7, 8]]], [9]]

在不同的表示:

[
    [
        [
            [
                [1, 3, 4, 5]
            ], 
            [1, 3, 8]
        ], 
        [
            [1, 7, 8]
        ]
    ], 
    [
        [
            [6, 7, 8]
        ]
    ], 
    [9]
]

您将如何提取这些内部列表,以便返回具有以下形式的结果:

[[1, 3, 4, 5], [1, 3, 8], [1, 7, 8], [6, 7, 8], [9]]

非常感谢!

编辑(感谢@falsetru):

空的内部列表或混合类型列表永远不会成为输入的一部分。

4

3 回答 3

33

这似乎有效,假设没有像这样的“混合”列表[1,2,[3]]

def get_inner(nested):
    if all(type(x) == list for x in nested):
        for x in nested:
            for y in get_inner(x):
                yield y
    else:
        yield nested

输出list(get_inner(nested_list))

[[1, 3, 4, 5], [1, 3, 8], [1, 7, 8], [6, 7, 8], [9]]

甚至更短,没有生成器,sum用于组合结果列表:

def get_inner(nested):
    if all(type(x) == list for x in nested):
        return sum(map(get_inner, nested), [])
    return [nested]
于 2013-10-21T13:36:43.907 回答
13

使用itertools.chain.from_iterable

from itertools import chain

def get_inner_lists(xs):
    if isinstance(xs[0], list): # OR all(isinstance(x, list) for x in xs)
        return chain.from_iterable(map(get_inner_lists, xs))
    return xs,

使用isinstance(xs[0], list)而不是all(isinstance(x, list) for x in xs),因为没有混合列表/空内部列表。


>>> list(get_inner_lists([[[[[1, 3, 4, 5]], [1, 3, 8]], [[1, 7, 8]]], [[[6, 7, 8]]], [9]]))
[[1, 3, 4, 5], [1, 3, 8], [1, 7, 8], [6, 7, 8], [9]]
于 2013-10-21T13:51:56.700 回答
5

比递归更有效:

result = []
while lst:
    l = lst.pop(0)
    if type(l[0]) == list:
        lst += [sublst for sublst in l if sublst] # skip empty lists []
    else:
        result.insert(0, l) 
于 2013-10-21T13:55:33.920 回答