

InterviewSolution
Saved Bookmarks
1. |
To return the length of string s what command do we execute?(a) s.__len__()(b) len(s)(c) size(s)(d) s.size() |
Answer» Right choice is (a) s.__len__() Best explanation: Execute in shell to verify. |
|