I've got a problem , and do not know how to code in python.
I've got a list[10, 10, 10, 20, 20, 20, 30]
I want it be in a dictionary like this
{"10": 1, "20": 3, "30" : 1}
How could I achieve this?
|
I've got a problem , and do not know how to code in python. I've got a I want it be in a dictionary like this
How could I achieve this? |
||||
If you really want to convert the keys to strings, that's a separate step:
This class is new to Python 2.7; for earlier versions, use this implementation: http://code.activestate.com/recipes/576611/ Edit: Dropping this here since SO won't let me paste code into comments,
|
||||
|
|
|
Another way that does not use
EDIT: For a list of size 1000000 with 100 unique items, this method runs on my laptop in 0.37 sec, while the answer using EDIT: The method using |
|||||
|
|
Like this
Hope this helps |
|||
|
|
|
in Python >= 2.7 you can use dict comprehensions, like:
not the fastest way, but pretty suitable for small lists UPDATEor, inspired by inspectorG4dget, this is better:
|
||||
|
|
{"10": 3, "20":3, "30":1}? If not, how is this dictionary compiled? What are the values in relation to their keys? – Anthony Forloney Oct 18 '10 at 2:12