How to Find the Length of List in Python?

How to Find the Length of List in Python?

The list in Python is a collection data-type that is ordered and changeable. A list can have duplicate entry as well. The Python len() method is used to find the length of any object. In this article, we will learn how to find the length of list in python.

List in Python

list in Python is implemented to store the sequence of various types of data. However, there are six data types in Python that are capable of storing the sequences but the most common and reliable type is a list. To learn more about python you can join  Python for Everybody Specialization course.

A list is defined as a collection of values or items of different types. The items in the list are separated with a comma (,) and enclosed with the square brackets [].

It is defined as follows:

1
2
3
list1 = ['itexamtools', 'python', 2022];
list2 = [1, 2, 3, 4, 5 ];
list3 = ["a", "b", "c", "d"];

How to Find the Length of List in Python?

There are two most commonly used and basic methods that are used to find the length of the list in Python:

python certification training course
  • Len() Method
  • Naive Method

Len() Method

There is a built-in function called len() for getting the total number of items in a list, tuple, arrays, dictionary, etc. The len() method takes an argument where you may provide a list and it returns the length of the given list.

The len() method is one of the most used and convenient ways to find the length of list in Python. This is the most conventional technique adopted by all the programmers today.

Find out our Python Training in Top Cities/Countries

IndiaUSAOther Cities/Countries
BangaloreNew YorkUK
HyderabadChicagoLondon
DelhiAtlantaCanada
ChennaiHoustonToronto
MumbaiLos AngelesAustralia
PuneBostonUAE
KolkataMiamiDubai
AhmedabadSan FranciscoPhilippines

Syntax:

1len(list)

The List parameter is a list for which the number of elements are to be counted. It returns the number of elements in the list.

Example:

12ListName = ["Hello", "Edureka", 1, 2, 3]print ("Number of items in the list = ", len(ListName))

Output:5

Naive Method

The len() method is the most commonly used method to find the length of the list in Python. But there is another basic method that provides the length of the list.

In the Naive method, one just runs a loop and increases the counter until the last element of the list to know its count. This is the most basic strategy that can be used in the absence of other efficient techniques.

Example:

123456ListName = [ "Hello", "Edureka", 1,2,3 ]print ("The list is : " + str(ListName))counter = 0for i in ListName:counter = counter + 1print ("Length of list using naive method is : " + str(counter))

Output:

The list is : ["Hello", "Edureka", 1,2,3]
Length of list using naive method is : 5

This was all about finding the length of list in Python. The len() method is the most popular method. Whereas, you can also use the basic method of finding the length with the help of Naive Method.

With this, we have come to the end of our article. I hope you understood how to find the length of any list in Python.

To get in-depth knowledge of Python along with its various applications, you can enroll for live Python Certification Training with 24/7 support and lifetime access. 

Got a question for us? Please mention it in the comments section of this “Length of List in Python” blog and we will get back to you as soon as possible or join our Python Training in Jeddah.