Hello,
I have a simple string that I want to read into a float without losing any visible information as illustrated below:
s = ' 1.0000\n'
When I do f = float(s), I get f=1.0
How to trick this to get f=1.0000 ?
Thank you
|
|
|
|
|
Here's an even shinier version of @Simon Edwards'
Example:
|
||
|
|
|
Hi Indulge me while I reinvent the wheel a little bit! ;) Should you want the
Now there are also a myriad of other |
||
|
|
|
In other words, you're losing no info -- Python considers trailing zeros in floats' decimal parts to be irrelevant. If you need to keep track very specifically of "number of significant digits", that's also feasible, but you'll need to explain to us all exactly what you're trying to accomplish beyond Python's normal |
||||||||||||||
|
|
|
Direct answer: You can't. Floats are imprecise, by design. While python's floats have more than enough precision to represent 1.0000, they will never represent a "1-point-zero-zero-zero-zero". Chances are, this is as good as you need. You can always use string formatting, if you need to display four decimal digits.
Indirect answer: Use the
The |
||||||||||
|
1.0 === 1.0000– Gumbo Sep 22 at 5:141.0000for? – SilentGhost Sep 22 at 10:46