Data Science and Machine Learning Internship ...
- 1k Enrolled Learners
- Weekend/Weekday
- Live Class
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.
Python Full Course – Learn Python in 12 Hours | Python Tutorial For Beginners | Edureka
This Edureka Python Full Course helps you to became a master in basic and advanced Python Programming Concepts.
In this article, we will learn how to find the length of list in python programming in the following sequence:
A 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 our Master Python programming 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 [].
list1 = ['edureka', 'python', 2019]; list2 = [1, 2, 3, 4, 5 ]; list3 = ["a", "b", "c", "d"];
If you want to learn Artificial Intelligence and Machine Learning in-depth, come to us and sign up for this Post Graduate Diploma AI and ML courses.
There are two most commonly used and basic methods that are used to find the length of the list in Python:
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
India | USA | Other Cities/Countries |
Bangalore | New York | UK |
Hyderabad | Chicago | London |
Delhi | Atlanta | Canada |
Chennai | Houston | Toronto |
Mumbai | Los Angeles | Australia |
Pune | Boston | UAE |
Kolkata | Miami | Dubai |
Ahmedabad | San Francisco | Philippines |
Syntax:
len(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:
ListName = ["Hello", "Edureka", 1, 2, 3] print ("Number of items in the list = ", len(ListName))
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:
ListName = [ "Hello", "Edureka", 1,2,3 ] print ("The list is : " + str(ListName)) counter = 0 for i in ListName: counter = counter + 1 print ("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 Chennai.
Course Name | Date | |
---|---|---|
Python Certification Training Course | Class Starts on 28th January,2023 28th January SAT&SUN (Weekend Batch) | View Details |
Python Certification Training Course | Class Starts on 25th February,2023 25th February SAT&SUN (Weekend Batch) | View Details |
Python Certification Training Course | Class Starts on 25th March,2023 25th March SAT&SUN (Weekend Batch) | View Details |
edureka.co
very nicely explained.