print(len('hello')) का output क्या होगा?
What will be the output of print(len('hello'))?
A
4
B
5
C
6
D
Error
Explanation
-
English:
len('hello')returns the number of characters in the string'hello'.
It has 5 characters: h, e, l, l, o -
हिंदी:
len('hello')string'hello'में मौजूद अक्षरों की संख्या लौटाता है।
इसमें 5 अक्षर हैं: h, e, l, l, o
Correct Answer: B) 5