python 在Python中展平列表。 #蟒蛇

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 在Python中展平列表。 #蟒蛇相关的知识,希望对你有一定的参考价值。

def flatten(coll):
    for i in coll:
        if isinstance(i, (list, tuple)):
            for j in flatten(i):
                yield j
        else:
            yield i

以上是关于python 在Python中展平列表。 #蟒蛇的主要内容,如果未能解决你的问题,请参考以下文章