import sympy
from sympy import Rational


a = Rational(14, 4)
assert str(a) == '7/2'

sympy.test(parallel=True)