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