vote up 4 vote down star

Has anybody seen such a thing? Small self-sufficient modules are preferred.

flag

30% accept rate

3 Answers

vote up 7 vote down check

The fractions module from 2.6 can be ripped out if necessary. Grab fractions.py, numbers.py, and abc.py; all pure python modules.

link|flag
True, i thought it would be much more difficult! – Constantin Dec 1 '08 at 0:36
vote up 1 vote down

One more thing to try is Rat.py from demo folder in Python 2.5 maintenance branch. If i understand correctly, it is the daddy of 2.6 fractions. It's a single module without dependencies.

>>> from Rat import rat
>>> rat(1) / rat(3)
Rat(1,3)
>>> rat(1, 3) ** 2
Rat(1,9)

UPDATE: Nah, fractions.py is about 2.5 times faster for my task.

link|flag
vote up 7 vote down

SymPy is a symbolic maths library written entirely in Python and has full support for rational numbers. From the tutorial:

>>> from sympy import *
>>> a = Rational(1,2)

>>> a
1/2

>>> a*2
1

>>> Rational(2)**50/Rational(10)**50
1/88817841970012523233890533447265625

There is also GMP for Python (GMPY) which, while not pure Python, is probably more efficient.

link|flag
Thanks. SymPy's Rational is nice, if a little too intertwined with other parts of the library. – Constantin Nov 30 '08 at 21:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.