10
5
-1
-1
-1
1
1
0
2
...
If I want to count the number of occurrences of each number in a file, how do I use python to do it?
|
|
|
|
|
|
|
This is almost the exact same algorithm described in Anurag Uniyal's answer, except using the file as an iterator instead of
|
||||||
|
|
|
|
||||||
|
|
|
Use dictionary where every line is a key, and count is value. Increment count for every line, and if there is no dictionary entry for line initialize it with 1 in except clause -- this should work with older versions of Python.
|
|||
|
|
|
|
Read the lines of the file into a list
Starting with a list of values
EDIT: as Matthew rightly points out, this is hardly optimal. Here is a version using defaultdict:
|
||||||
|
|
|
I think what you call map is, in python, a dictionary. For a good solution, see the answer from Stephan or Matthew - but take also some time to understand what that code does :-) |
||||
|
|
|
There will be a key in d for every distinct value in the original list, and the values of d will be the number of occurrences. |
||||||
|
|
|
Counter is your best friend:) for(Python2.5 and 2.6) http://code.activestate.com/recipes/576611/
for this :
|
||||||
|
|
|
counter.py
Example:
|
||
|
|
|
|
New in Python 3.1:
|
||
|
|