I would like to know how to extract values in a dictionary that appear for all keys.
So for instance, if i have the following dictionary:
d = {'a': [num_1, num_2], 'b': [num_1],
'c': [num_1,num_2, num_3]}
I would like to extract the value which exists for all keys, in this instance num_1.
How can i achieve this?
EDIT: how would i store the common value(s) in a list?