Q. What is the output of this code?
Code:
print(len(set('hello')))
β
Correct Answer: (B)
4
Explanation: Set removes duplicates, so `h, e, l, o` are unique characters.