Given an item, how to count its occurrences in a list in Python?
|
If you are using Python 2.7 or 3 and you want number of occurrences for each element:
|
|||||||||
|
|
list.count(x) returns the number of times x appears in a list see: http://docs.python.org/tutorial/datastructures.html#more-on-lists |
|||
|
|
|
Another way to get the number of ocurrences of each item:
|
|||||||
|
|
|||||||||||||||
|
|
I use if x in [] to test for the existence of values, count is meant for another purpose, and for huge lists it's also faster than count. It returns True or False: Edit: Sorry, I misunderstood your question, my bad.
|
|||
|
|
|
To count the number of diverse elements having a common type:
gives
|
|||
|
|
|
I had this problem today and rolled my own solution before I thought to check SO. This:
is really, really slow for large lists. My solution
is actually a bit faster than the Counter solution, at least for Python 2.7. |
|||
|
|