gpt4 book ai didi

python - 在 Python 的列表列表中查找特定项目

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

我刚刚开始学习 Python,我需要一些关于在列表中搜索项目的建议。我有一个包含列表列表的列表。我如何在列表中搜索项目并返回同一列表中的值,如下例所示。

Example: 
myList = [['Red', 'Tomato'], ['Green', 'Pear'], ['Red', 'Strawberry'], ['Yellow', 'Lemon']]

word = 'Green'
return Pear

是否也可以在列表中找到第一个实例或第 n 个实例?

first_instance = 'Red'
return Tomato

last_instance = 'Red'
return Strawberry

最佳答案

您可以获取所有此类元素:

instances = [x[1] for x in myList if x[0] == 'Red']

并处理 instances[0]instances[-1]

为了只得到第一个,我会采用 @eumoro 的方法,使用生成器表达式。

关于python - 在 Python 的列表列表中查找特定项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16395139/

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