Is there a more efficient way to compare two dictionaries than a double loop ?
for i in d:
for i2 in d2:
if i == i2:
key1 = d.get(i)
key2 = d2.get(i2)
print("First key:", key1)
print("Second key:", key2)