Q. What will be the output of following Python code?
Code:set1={0,0,9}
print(set1)
β
Correct Answer: (B)
{0,9}
set1={0,0,9}
print(set1)
You must be Logged in to update hint/solution