I have values like 656364.53 which has to be read from a text file. From my programming experience, I have learnt that is value takes the double data type, to be retained as a proper value.
In python however, it seems that there is only float or the single - precision value. Therefore as per my experience, these values get changed on reading.
How do I get double precision values in python.
Decimalmodule perhaps.