Trusted answers to developer questions

How to find the length of a string in Python

Get Started With Data Science

Learn the fundamentals of Data Science with this free course. Future-proof your career by adding Data Science skills to your toolkit — or prepare to land a job in AI, Machine Learning, or Data Analysis.

There are two methods to find the length of a string in Python.

Using the len() method

To calculate the length of a string in Python, you can use the built-in len() method.

It takes a string as a parameter and returns an integer as the length of that string. For example, len(“educative”) will return 9 because there are 9 characters in “educative”.

Markdown Monster icon

Using the for loop

If you don’t want to use the len() method, you can calculate the length by iterating the string using a for-loop and incrementing a counter variable in every iteration. The following code shows how this is done:

counter = 0
for c in "educative": # traverse the string “educative”
counter+=1 #increment the counter
print (counter) # outputs the length (9) of the string “educative”

Here’s how this method works:

1 of 12

RELATED TAGS

python
length of string
len method
array traversal
Copyright ©2024 Educative, Inc. All rights reserved
Did you find this helpful?