我有两本词典。
mydict1 ={
'Better' : {'vara1':'vala1', 'varb1':'valb1'},
'BetterThanBest' : {'vara2':'vala2', 'varb2':'valb2'} }
mydict2 = {
'/check12/BetterThanBest':'/dir3/BetterThanBest' }
for i in mydict2 :
for pattern in mydict1.keys() :
if pattern in i :
print pattern, i
# Do something for i,
# but don't want multiple matches to i, just the best
这返回:
Better /check12/BetterThanBest
BetterThanBest /check12/BetterThanBest
我想找到 mydict1 的键的完全匹配,即在上述情况下为“BetterThanBest”。可能吗 ?
感谢您的任何回复。