<Apti
Code
/>
Back
Question 435: How can you find the intersection of two sets?
tcs
wipro
infosys
general
aptitude
sets
python-programming
Theintersection()method is used to find the common elements between two sets.
set1.join(set2)
set1 & set2
set1.intersect(set2)
set1.intersection(set2)
Submit Answer
Show Answer
Previous
Next