gpt4 book ai didi

python - 从列表中的嵌套元组中获取特定值

转载 作者:太空宇宙 更新时间:2023-11-04 08:28:06 24 4
gpt4 key购买 nike

我在列表中有一个嵌套的元组,如下所示:

x = [(('subject', 'to'), 18), (('subject', 'and'), 5), (('subject', 'of'), 4), (('subject', 'the'), 3), (('subject', 'that'), 2), (('subject', 'owing'), 2), (('subject', 'making'), 2)]

我需要一个内部元组的第二个值(索引 1)的列表。我如何列出它?

我需要的输出:

['to','and','of','the','that','owing','making']

按照特定的顺序

这是我尝试过的

x[0][0][1]

我的输出

to

最佳答案

使用列表理解和变量拆包:

newList = [j for (i, j), index in x]

关于python - 从列表中的嵌套元组中获取特定值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55286910/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com