Find length of a string in python (4 ways)
Strings in Python are immutable sequences of Unicode code points. Given a string, we need to find its length.
Examples:
Input : 'abc' Output : 3 Input : 'hello world !' Output : 13 Input : ' h e l l o ' Output :14
Methods:
- Using the built-in function len. The built-in function len returns the number of items in a container.Output:
5
- Using for loop and in operator. A string can be iterated over, directly in a for loop. Maintaining a count of the number of iterations will result in the length of the string.Output:
5
- Using while loop and Slicing. We slice a string making it shorter by 1 at each iteration will eventually result in an empty string. This is when while loop stops. Maintaining a count of the number of iterations will result in the length of the string.Output:
5
- Using string methods join and count. The join method of strings takes in an iterable and returns a string which is the concatenation of the strings in the iterable. The separator between the elements is the original string on which the method is called. Using join and counting the joined string in the original string will also result in the length of the string.Output:
5
No comments:
Post a Comment
Your feedback is highly appreciated and will help us to improve our content.