Q. What does the `len()` function return in Python?
Code:
print(len("Python"))
β
Correct Answer: (B)
6
Explanation: `len()` returns the number of characters in the string. 'Python' has 6 characters.