Python fractions
library enables a user to declare a fraction, like this:
f = Fraction(3, 15)
The problem is, I want to keep track of the numerators and denominators, whereas the example above is equivalent to:
f = Fraction(1, 5)
Is there a way to do this without writing my own class?