I need to take a list and use a dictionary to catalogue where a particular item occurs in a list, as an example:
L = ['a', 'b', 'c', 'b', 'c', 'a', 'e']
the dictionary needs to contain the following:
D = {'a': 0, 5 , 'b': 1, 3 , 'c': 2, 4 , 'e': 6}
However if I use what I wrote:
for i in range(len(word_list)):
if D.has_key('word_list[i]') == False:
D['word_list[i]'] = i
else:
D[word_list[i]] += i
Then I get a KeyError for a certain word and I don't understand why I should be getting an error.
I am a newbie to using dictionaries and if anyone could help I would be hugely grateful. Thanks as always!
D = dict((k, map(operator.itemgetter(1), v)) for k, v in (itertools.groupby(sorted(x[::-1] for x in enumerate(L)), operator.itemgetter(0))))– Karl Knechtel Dec 12 '11 at 19:55