Skip to content

Python len() Function

Last updated on August 8, 2022

In this tutorial, you will learn about the Python len() function with the help of examples.

The len() function returns the number of items in an object. When the object is a string, the len() function returns the number of characters in the string.

The syntax of the len() function looks like this:

len(object)

Where argument may be a sequence (such as a string, bytes, tuple, list, or range) or a collection (such as a dictionary, set, or frozen set).

Examples:

# compute the length of string.
my_string = "arjunphp"
print(len(my_string))
# Output: 8

languages = ['Python', 'PHP', 'JavaScript']

# compute the length of languages list
length = len(languages)
print(length)

# Output: 3

Comments are closed, but trackbacks and pingbacks are open.