Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

How to Get the Intersection of Sets in Python

firstSet = {2, 3, 4, 5}

secondSet = {1, 3, 5, 7}

print(firstSet & secondSet)
# {3, 5}
Source by www.freecodecamp.org #
 
PREVIOUS NEXT
Tagged: #How #Get #Intersection #Sets #Python
ADD COMMENT
Topic
Name
2+1 =