Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
6  
That's actually a tuple, not a list. – Ignacio Vazquez-Abrams Nov 9 '10 at 2:43
1  
"simple way"? What complex way did you try? Please post the code you tried. – S.Lott Nov 9 '10 at 2:45
1  
To make a list, all you need to do is MyList=["a", "b", "c"]. There are some important differences between lists and tuples – gnibbler Nov 9 '10 at 2:50
possible duplicate of Get the size of a list in python? – tadman Feb 14 at 1:17

6 Answers

len()

share|improve this answer

just do len(MyList)

This also works for strings, tuples, dict.

share|improve this answer

Len(myList) should do it.

Len works with all the collections, and strings too!

share|improve this answer
len() 

it will count the element in the list, tuple and string and dictionary, eg.

>>> mylist = [1,2,3] #list
>>> len(mylist)
3
>>> word = 'hello' # string 
>>> len(word)
5
>>> vals = {'a':1,'b':2} #dictionary
>>> len(vals)
2
>>> tup = (4,5,6) # tuple 
>>> len(tup)
3

To learn Python python you can use byte of python , it is best ebook for python beginners.

share|improve this answer

Len won't yield the total number of objects in a nested list (including multidimensional lists). If you have numpy, use size(). Otherwise use list comprehensions within recurs ion.

share|improve this answer

Use len(MyList)That should do it.

share|improve this answer
Why has this been down voted? – Matt Clarkson Jan 24 at 8:50
@Matt Clarkson - It's a copy of an answer that was added two months earlier. – Joe Gauterin Feb 5 at 9:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.