easy way to figure out what value is the same between 2 lists python code example
Example: python same values in two lists
a = {1, 2, 3, 4}
b = {3, 4, 5, 6}
a.intersection(b)
a = {1, 2, 3, 4}
b = {3, 4, 5, 6}
a.intersection(b)