On Mon, Mar 23, 2015 at 7:52 AM, Steven D'Aprano
<steve+comp.lang.pyt...@pearwood.info> wrote:
> x % 1 is significantly faster, but has the disadvantage of giving the
> complement of the fraction if x is negative

I suppose

abs(x) % 1

would be just as slow as

x - int(x)

? (haven't checked)

Skip
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to