I have two dictionaries:
dict1={1:["solomon", "Daniel", " taiwo", "David"], 2:["James", "Jason", " abbaly"], 3:["Sarah", "Abraham", "Johnson"]}
dict2={1:["ire", "kehinde", " taiwo", "David"], 2:["jah", "abbey", " abbaly"], 3:["sarai", "Abraham", "Johnson"]}
I want to find all common words in dict1[key] and dict2[same_key].
What is the best way to do that?