Write your own len() in Python
The method len() returns the number of elements in the list or length of the string depending upon the argument you are passing.
How to implement without using len():
1. Take input and pass the string/list into a function which return its length. 2. Initialize a count variable to 0, this count variable count character in the string. 3. Run a loop till length if the string and increment count by 1. 4. When loop is completed return count.
Python implementation:
# Function which return length of string def findLength(string): # Initialize count to zero count = 0 # Counting character in a string for i in string: count+= 1 # Returning count return count # Driver code string = "geeksforgeeks"print(findLength(string)) |
chevron_right
filter_none
Output:
13
This article is contributed by Sahil Rajput. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- How to write an empty function in Python - pass statement?
- Python | Create and write on excel file using xlsxwriter module
- Count of lines required to write the given String
- Important differences between Python 2.x and Python 3.x with examples
- Python | Sort Python Dictionaries by Key or Value
- Python | Set 4 (Dictionary, Keywords in Python)
- SQL using Python | Set 1
- try and except in Python
- max() and min() in Python
- bin() in Python
- zip() in Python
- pow() in Python
- set add() in python
- Any & All in Python
- Python | a += b is not always a = a + b



