Answers for "two lists equal python"

0

compare lists element wise python

[ x&y for (x,y) in zip(list_a, list_b)]
Posted by: Guest on March-20-2020
-2

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

Python Answers by Framework

Browse Popular Code Answers by Language