【问题标题】:python - is there a way to use list comprehension to create a list based on the extracted common indexes of sublists?python - 有没有办法使用列表推导根据提取的子列表的公共索引创建列表?
【发布时间】:2023-04-02 13:36:01
【问题描述】:

我正在尝试找出一种干净的方法来获取每个子列表的相同索引处的元素并根据这些提取的元素创建一个新列表,所以首先我想要一个包含每个早期子列表的元素 0 的子列表,然后元素 1、2 等相同。目前我正在使用以下代码来获得我想要的结果:

lst = [[1, 2, 3, 4], ['a', 'b', 'c', 'd'], [True, True, False, True], [14.5, 15.6, 12.5, 12.3]]
approach_1 = []

for i, item in enumerate(lst[0]):
    approach_1.append([item, lst[1][i], lst[2][i], lst[3][i]])

这给了我

approach_1 = [[1, 'a', True, 14.5], [2, 'b', True, 15.6], [3, 'c', False, 12.5], [4, 'd', True, 12.3]]

结果是我正在寻找的,但有没有办法让我在一条线上实现这一目标?我可以将以下内容用于一个元素:

approach_2 = [x[0] for x in lst] 

有没有类似的东西会返回与方法_1相同的结果?

【问题讨论】:

标签:
python
list
indexing
list-comprehension
sublist