Hi!
I have a file with data that looks like that:
123 34 0.45
232 54 0.01
And so on (the file contains more than 1300 lines). I am trying to make dictionary from the data (like this: dict={0.45:'123_34',0.01:'232_54',...}).
The problem is that I didn't get more than 1300 elements in dictionary (as I should) but only around 60. Does anyone know the reason?