I am a newbe to Python.. I am trying to find a simple way of getting a count of the number of elements in a list e.g.
MyList = ["a", "b", "c"]
So I want to know there are three. I am surely missing something.
|
just do This also works for |
||||
|
|
it will count the element in the list, tuple and string and dictionary, eg.
To learn Python python you can use byte of python , it is best ebook for python beginners. |
|||
|
|
|
Len won't yield the total number of objects in a nested list (including multidimensional lists). If you have |
||||
|
|
|
Use len(MyList)That should do it. |
|||||
|
MyList=["a", "b", "c"]. There are some important differences between lists and tuples – gnibbler Nov 9 '10 at 2:50