Answers for "intersection of multiple sets in python"

8

intersection of two lists python

>>> a = [1,2,3,4,5]
>>> b = [1,3,5,6]
>>> list(set(a) & set(b))
[1, 3, 5]
Posted by: Guest on August-10-2020
1

intersection between two sets python

x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}

z = x.intersection(y)
    
print(z)

# Output: {"apple"}
Posted by: Guest on November-07-2020

Code answers related to "intersection of multiple sets in python"

Python Answers by Framework

Browse Popular Code Answers by Language