Back
I am trying to find a simple way of getting a count of the number of elements in a list:
MyList = ["a", "b", "c"]
I want to know there are 3 elements in this list.
To count elements in the list you can use len() function below is the code:-
>>> someList=[] >>> print len(someList) 0
>>> someList=[]
>>> print len(someList)
0
To know more about this you can have a look at the following video tutorial:-
31k questions
32.8k answers
501 comments
693 users