Calculate a String Length in Python

  • Post category:String

In this article, you will see how to calculate a string length in Python. To get the length of a string, the easiest way is to use the len() method. It can also tell you how many items are stored in an iterable, like a list or tuple.

Step 1: Create a string

str = "CodeAllow"
print("str = ", str)
print("str type = ", type(str))

Step 2: Calculate string length

print("Length = ", len(str))

Output:

str =  CodeAllow
str type =  <class 'str'>
Length =  9

Free resources to learn advanced skills: AiHints and CodeAllow