Report Bug
Qus : To return the length of string s what command do we execute?
Qusस्ट्रिंग की लेंथ रिटर्न करने के लिए हम किस कमांड को एक्सक्यूट करते हैं?

A. s.__len__()
B. len(s)
C. size(s)
D. s.size()


Solution
B. len(s)



Explanation
Execute in shell to verify.



Report Bug