This was causing me a bit of grief...
I created a dictionary from a list
l = [\'a\',\'b\',\'c\'] d = dict.fromkeys(l, [0,0]) # initializing dictionar
l = ['a','b','c'] d = dict((i, [0, 0]) for i in l)