Is it possible to hash lists?
lists
For example, I know that hashes of tuples are possible:
>>> hash((1,2,3,4,5,6)) -319527650
If you really need to use a list as a dictionary key, try converting it to a string first. my_list = str(my_list)
my_list = str(my_list)