Like the question says. Converting to / from the (truncated) string representations can affect their precision. But storing them in other formats like pickle makes them unreadable (yes, I want this too).
How can I store floating point numbers in text without losing precision?
repris by far your best bet. It's guaranteed by the language thatfloat(repr(x))recoversxwithout loss of information. – Mark Dickinson Jun 20 '12 at 8:33