Hi,
given a dict, how can I find out if a given index in that dict has already been set to a non-None value?
I.e., I want to do this:
my_dict = {}
if (my_dict[some_value] != None):
my_dict[some_value] = 1
else:
my_dict[some_value] += 1
I.e., I want to increment the value if there's already one there, or set it to 1 otherwise.
Thanks!
Ben
