['a','a','b','c','c','c']
to
[2, 2, 1, 3, 3, 3]
and
{'a': 2, 'c': 3, 'b': 1}
|
|
|||||||||||||||||
|
|
This coding should give the result:
Of course if you want the list inbetween result, just get the values from the dict (mydict.values()). |
|||
|
|
|
Use a
Output:
|
|||||
|
I've included Wim answer. Great idea |
|||
|
|
|
Second one could be just
|
|||
|
|
|
On Python ≥2.7 or ≥3.1, we have a built-in data structure collections.Counter to tally a list
It is easy to build
|
|||
|
|
|
|||
|
|