I need to make a dictionary where you can reference [[1,2],[3,4]] --> ([1,2]:0, [2,3]:0) I've tried different ways but I can't use a list in a dictionary. So i tried using tuples, but its still the same. Any help is appreciated!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You need to use tuples:
or (for python2.7+)
Edit: Reading the comments, OP probably want to count occurrences of a list:
|
|||||||||||
|
|
Lists can't be used as dictionary keys since they aren't hashable (probably because they can be mutated so coming up with a reasonable hash function is impossible).
Note that in your example, you seem to imply that you're trying to build a dictionary like this:
That won't work. You need curly brackets to make a dictionary. |
|||
|
|
|
|
|||||
|
id()builtin function on your list and use the result of that as your key. These are two very different use cases and you haven't given enough information for us to determine which approach solves your problem. – Mark Amery Nov 15 '12 at 22:30