Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
lst = {}

try:
    lst[someKey].append(someValue)
except KeyError:
    lst[someKey] = []
    lst[someKey].append(someValue) # redundant ?

Is there a better way to add to a non-existing key ? In PHP etc it'll create it on its own.

share|improve this question
Doesn't {} make lst a dictionary ? – Sathya Dec 7 '10 at 15:27
Thanks. Corrected. – MotionGrafika Dec 7 '10 at 15:34

2 Answers

up vote 3 down vote accepted

lst = collections.defaultdict(list)

share|improve this answer
And don't forget to import collections. – Fred Larson Dec 7 '10 at 15:32
@Fred I won't, thanks :) – khachik Dec 7 '10 at 15:33
To clarify, calling lst[newkey].append(something) will add newkey if it doesn't already exist, with an empty list as a value (the result of calling list()). – Thomas K Dec 7 '10 at 15:35
lst[someKey] = lst.get(someKey, []) + [someValue]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.