Q. What is the output of this code?
Code:
print(len('Python'))
β
Correct Answer: (B)
6
Explanation: `len()` returns the number of characters in the string.