For example this is a dictionary
dic={3: [2, 7, 8], 1: [7]}
I want a list like this [7]
First, get all the values using .values, then convert them to set, and get the intersection of them:
.values
set.intersection(*list(map(set, dic.values())))