

MCQOPTIONS
Saved Bookmarks
1. |
x=list1.pop(2) print(set([x])) |
A. | Elements of set2 will get appended to set1 |
B. | Elements of set1 will get appended to set2 |
C. | A new set will be created with the elements of both set1 and set2 |
D. | A new set will be created with the unique elements of set1 and set2. |
Answer» D. A new set will be created with the unique elements of set1 and set2. | |