

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do we get size of a list in Python?
Python's built in function len() returns number of elements in a sequence including list object.
>>> L1=[1,2,3,4,5] >>> len(L1) 5
The built-in function len() implements the __len__() method defined for all sequence type classes including list class. It also returns size.
>>> L1.__len__() 5
- Related Questions & Answers
- How do we get the size of a list in Python?
- How to get the size of a list in Python?
- How do I get list of methods in a Python class?
- How do I find the size of a Java list?
- How do I set the size of a list in Java?
- Find size of a list in Python
- How do we create python string from list?
- How do we specify the buffer size when opening a file in Python?
- How to get the size of a string in Python?
- How do we add a menu list in HTML?
- How do you get the file size in C#?
- How do make a flat list out of list of lists in Python?
- How do we assign values to variables in a list using a loop in Python?
- How do I get length of list of lists in Java?
- Break a list into chunks of size N in Python
Advertisements