What is the value of mystery after this statement?
<br />
mystery = set([1, 2, 3]).intersection(set([3, 2, int("1")]))<br />
set([2])
set([1, 1, 2, 3])
set([1, 2, 3])
set([2, 3])
Which of the following objects can be added to a set
?
set([1,2,3])
frozenset([1,2,3])
list([1,2,3])
- None of the above — sets cannot contain collections as elements