Report Bug
Qus :

What will be the output of the following Python function?

len(["hello",2, 4, 6])

Qus

निम्नलिखित Python फ़ंक्शन का आउटपुट क्या होगा?

len(["hello",2, 4, 6])


A. 4
B. 3
C. Error
D. 6


Solution
A. 4



Explanation
The function len() returns the length of the number of elements in the iterable. Therefore the output of the function shown above is 4.



Report Bug