

InterviewSolution
Saved Bookmarks
1. |
Write a program to enter a string by the user and dispaly its length |
Answer» str = raw_input ("Enter the string: ")l = len(str)print "Length of the string is: ", l | |