gpt4 book ai didi

python - 如何检查字典中的键是否以另一个字典中的键开头?

转载 作者:行者123 更新时间:2023-11-28 22:50:12 25 4
gpt4 key购买 nike

这是我正在尝试做的事情的简化场景。我有两个字典:

dictA = {"apple": 1, "orange": 2, "chocolate": 3, "mango": 4}
dictB = {"man": "abc", "or": "asdf", "app": "fasdfkl"}

如何让它打印(三个键+值的实际顺序无关紧要):

I can find...
orange2
mango4
apple1

I cannot find...
chocolate3

我曾尝试做类似的事情,但卡在了第二部分。

print "I can find ..."
for itemA in dictA:
for itemB in dictB:
if itemA.startswith(itemB):
print itemA + str(dictA[itemA])

它会打印

I can find ...
orange2
mango4
apple1

最佳答案

首先将第一个循环简化为此

print "I can find ..."
for itemA in dictA:
if any(itemA.startswith(itemB) for itemB in dictB):
print itemA + str(dictA[itemA])

第二个循环将使用 if not any(...)

这不是一个非常有效的算法,但我猜你只是在做一个练习

关于python - 如何检查字典中的键是否以另一个字典中的键开头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22887341/

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