Python Programming - Sets - Discussion

Discussion Forum : Sets - General Questions (Q.No. 6)
6.
How do you create an empty set?
empty_set = set()
empty_set = {}
empty_set = set([])
empty_set = set('')
Answer: Option
Explanation:
An empty set can be created using the set() constructor.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.