Assuming a following text file (dict.txt) has
1    2    3
aaa  bbb  ccc
the dictionary should be {1: aaa, 2: bbb, 3: ccc} like this
I did:
d = {}
with open("dict.txt") as f:
for line in f:
    (key, val) = line.split()
    d[int(key)] = val
print (d)
but it didn't work. I think it is because of the structure of txt file.
 
     
     
     
    