Q. What will the below Python code do?
Code:set1={"a",3,"b",3}
set1.remove(3)
β
Correct Answer: (B)
It removes element 3 from set1
set1={"a",3,"b",3}
set1.remove(3)
You must be Logged in to update hint/solution