I have a list: v = [1,2,2,3]. I would like to use this list as a key. I can do it "manually":
x = {}
x[1,2,2,3] = 7
But
x[v] = 7
does not work. What is the easiest way to do what I need to do?
ADDED
I imagine the solution as something like that:
x[open(v)] = 7
open(); that would try to read a file named[1,2,2,3]and as lists are not strings... – TokenMacGuy Oct 5 '11 at 16:02