I had this task to read a file, store each character in a dict as key and increment value for each found key, this led to code like this:
chrDict = {}
with open("gibrish.txt", 'r') as file:
for char in file.read():
if char not in chrDict:
chrDict[char] = 1
else:
chrDict[char] += 1
So this works ok but to me, atleast in Python, this looks really ugly. I tried different ways of using comprehension. Is there a way to do this with comprehension? I tried using locals() during creation, but that seemed to be really slow, plus if I've understood anything correctly locals would include everything in the scope in which the comprehension was launched, making things harder.