If I have a list of numbers and want to add them to an existing dictionary with the value 0. What's the easiest way of doing this? Seems so easy but I can't find any clean way of doing this. For example:
key = [1,2,3]
value = 0
dict = {}
... one more line of code if possible ...
>>>dict
{(1,2,3):0}