gpt4 book ai didi

python - 如何获取其值至少包含另一个列表中的一个项目的字典键?

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

我写了一个简单的脚本,其范围是:

list=[1,19,46,28 etc...]
dictionary={Joey:(10,2,6,19), Emily: (0,3), etc}

现在我需要找到字典中至少有一个列表项的所有键值

示例:Joey 的值是 19,因此 Joey 是赢家。

我是怎么做到的:(完全没有程序员)

# NodesOfSet = the list

# elementsAndTheirNodes = the dictionary

# loop as many times as the number of key:value entries in the dictionary element:nodes
# simply: loop over all the elements
for i in range (0, len (elementsAndTheirNodes.keys())):

# there is an indent here (otherwise it wouldnt work anyway)
# loop over the tuple that serves as the value for each key for a given i-th key:value
# simply: loop over all their nodes
for j in range (0, len (elementsAndTheirNodes.values()[i])):

# test: this prints out element + 1 node and so on
# print (elementsAndTheirNodes.keys()[i], elementsAndTheirNodes.values()[i][j] )

for k in range (0, len (NodesOfSet)):
if NodesOfSet[k] == (elementsAndTheirNodes.values()[i][j]):
print ( elementsAndTheirNodes.keys()[i], " is the victim")
else:
print ( elementsAndTheirNodes.keys()[i], " is not the victim")

但这非常耗时,因为它基本上遍历了数据库中的所有内容。我可以寻求帮助优化吗?谢谢!

最佳答案

我会使用列表理解 和内置的 any一旦找到共享项目,它就会短路。将您的列表变成集合可将成员查找的复杂性从 O(n) 降低到 O(1):

s = set(lst)
result = [k for k, v in dct.items() if any(i in s for i in v)]

注意不要将内置函数指定为对象的名称(例如 list),以避免稍后在您的代码中使内置函数无法使用。

关于python - 如何获取其值至少包含另一个列表中的一个项目的字典键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43546697/

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