gpt4 book ai didi

python - 创建一个新的字典值列表,其键与单独列表中的项目匹配

转载 作者:太空宇宙 更新时间:2023-11-03 21:12:12 27 4
gpt4 key购买 nike

该字典将农场动物存储为键,将它们的位置存储为值。

id_name_dict = {
'cat': 'barn', 'dog': 'field', 'chicken': 'coop',
'sheep': 'pasture', 'horse': 'barn', 'cow': 'barn'
}

此列表存储我想知道其位置的农场动物的名称

wanted_farm_animals = ['cat,', 'dog', 'horse']

所需的输出是一个包含wanted_farm_animals位置的新列表

n = ['barn', 'field', 'barn']

这是我尝试执行此操作的代码

n = []
for animal, location in id_name_dict.items():
for a in wanted_farm_animals:
if a == animal:
n.append(location)
print(n)

但是,输出并不完整。只是

['field', 'barn']

如何获得正确的所需输出?

最佳答案

简单的列表理解怎么样?

id_name_dict = {
'cat': 'barn', 'dog': 'field', 'chicken': 'coop',
'sheep': 'pasture', 'horse': 'barn', 'cow': 'barn'
}
wanted_farm_animals = ['cat', 'dog', 'horse']

result = [v for k,v in id_name_dict.items() if k in wanted_farm_animals]
# ['barn', 'field', 'barn']

关于python - 创建一个新的字典值列表,其键与单独列表中的项目匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54986276/

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