如何提取嵌套列表? [英] how to extract nested lists?

查看:67
本文介绍了如何提取嵌套列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

重复项:

  • Flattening a shallow list in Python
  • Comprehension for flattening a sequence of sequences?

让我们说我有一个带有嵌套列表的列表:

Lets say I have a list with nested lists:

[["a","b","c"], ["d","e","f"], ["g","h","i","j"]...]

将其转换为这样的单个列表的最佳方法是什么

what is the best way to convert it to a single list like that

["a", "b", "c", "d", "e"....]

推荐答案

使用 itertools.chain :

from itertools import chain

list(chain.from_iterable(list_of_lists))

这篇关于如何提取嵌套列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆