I am having some problems with mapping characters to a dictionary. What I am going for is
counter = { '!': 0, '"': 0, '#': 0, '$': 0 } ...
For all the ascii chars in the decimal ranges
range(33,64) range(91,96) and range(123,126)
After some time I discovered that map could possibly be used passing chr as the function and the list returned from range for iterations...
symbolMap = map(chr, range(33,64) + range (91,96) + range(123,126))
The problem is that this map does not corrospond to an ascii table, and it gets worse when I try
counter = dict.fromkeys( symbolMap, 0 )
see my shell session:
>>> counter
{'!': 0, '#': 0, '"': 0, '%': 0, '$': 0, "'": 0, '&': 0, ')': 0, '(': 0, '+': 0, '*': 0, '-': 0, ',': 0, '/': 0, '.': 0, '1': 0, '0': 0, '3': 0, '2': 0, '5': 0, '4': 0, '7': 0, '6': 0, '9': 0, '8': 0, ';': 0, ':': 0, '=': 0, '<': 0, '?': 0, '>': 0, '[': 0, ']': 0, '\\': 0, '_': 0, '^': 0, '{': 0, '}': 0, '|': 0}
>>> chr(34)
'"'
>>> range(33,64)
[33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63]
>>> symbolMap
['!', '"', '#', '$', '%', '&', "'", '(', ')', '*', '+', ',', '-', '.', '/', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';', '<', '=', '>', '?', '[', '\\', ']', '^', '_', '{', '|', '}']
Can someone explain to me how to fix this so that it maps out correctly.

dicts don't have order. – aaronasterling Jan 7 '11 at 7:05counterthat shouldn't be? What should be contained incounterthat isn't? – Karl Knechtel Jan 7 '11 at 8:27