Python Programming - Sets - Discussion

Discussion Forum : Sets - General Questions (Q.No. 37)
37.
How do you find the elements common to multiple sets?
set.intersection_all()
set.common()
set.common_elements()
set.intersection(*sets)
Answer: Option
Explanation:
The intersection() method with the asterisk (*) operator is used to find common elements in multiple sets.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.