Answers for "python same values in two lists"

-1

python same values in two lists

a = {1, 2, 3, 4}
b = {3, 4, 5, 6}

a.intersection(b)
Posted by: Guest on February-17-2021

Code answers related to "python same values in two lists"

Python Answers by Framework

Browse Popular Code Answers by Language