Re: Remove integer from float number
- From: John Machin <sjmachin@xxxxxxxxxxx>
- Date: Fri, 24 Mar 2006 06:53:01 +1100
On 24/03/2006 6:44 AM, Larry Bates wrote:
Derek Basch wrote:
How can I return:
".666"
from float:
"0.666"
This is what I have so far:
"%.6f" % x
Thanks Everyone,
Derek Basch
This works but I'm not entirely sure I know what you are
trying to accomplish.
("%.3f" % x)[1:]
>>> x = 12345.666; ("%.3f" % x)[1:]
'2345.666'
>>>
I'm sure of neither what the OP is trying to accomplish nor what Larry's definition of "works" is :-)
Perhaps the condition abs(x) < 1.0 is implied ...
.
- Follow-Ups:
- Re: Remove integer from float number
- From: Larry Bates
- Re: Remove integer from float number
- References:
- Remove integer from float number
- From: Derek Basch
- Re: Remove integer from float number
- From: Larry Bates
- Remove integer from float number
- Prev by Date: Re: boost python tutorial
- Next by Date: Re: python-announce moderation (was: Re: ANN: ClientForm 0.2.2 released)
- Previous by thread: Re: Remove integer from float number
- Next by thread: Re: Remove integer from float number
- Index(es):
Relevant Pages
|