I'm generating number simplifications through the Fractions package.
All right until you find numbers where the simplification goes to the maximum, ie reducing one of the terms to "1".
When this happens, the program skips this value, displaying only the other value. For example:
import fractions as F
print(F.Fraction(723520/51680))
It will output 14
and not 14/1
as it should be and like the package's own documentation shows which was to occur. Example Fraction(123)
of the documentation.