Q. What will be the output of the following code snippet?
Code:
s = {1, 2, 3, 3, 2, 4, 5, 5}
print(s)
β
Correct Answer: (B)
{1, 2, 3, 4, 5}
s = {1, 2, 3, 3, 2, 4, 5, 5}
print(s)
You must be Logged in to update hint/solution