# How to check the length of the elements in python list object using len() function
Length of a List
In order to find the number of items present in a list, we can use the len() function.
Ex:
list=[20,33,44,55,"ramesh","rani",56.88]
print(len(list))