Answers for "compare elements of 2 lists in python same or not"

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

Code answers related to "compare elements of 2 lists in python same or not"

Python Answers by Framework

Browse Popular Code Answers by Language