The picture is the best way to explain my problem, but I'm trying to populate a dictionary object in python, such that each key in the dictionary has a value of a list. Currently, all keys point to the same list. This is not what I want. Instead, I want each key to be associated with an independent copy of that list. I don't want to change the list in dict1 and have that change also occur in dict.
If there is a better object for this kind of task that a dict, I would love to hear that advise as well.
I tried using a list (of lists), but this gave me the same error (which surprised me).
Thanks! A bit of a noob! Sorry! http://dl.dropbox.com/u/15818688/IMAG0449.jpg
[:]) – Bruno Oct 6 '11 at 19:26