I am trying to do fraction using sympy, I know sympy is supports symbolic but can it be done with old fraction, please know that I want it to be display it as unevaluatedexpr here is my code.
JavaScript
x
5
1
from sympy import *
2
s = (3)/(2) + (4) / (6)
3
display(s)
4
init_printing()
5
Advertisement
Answer
JavaScript
1
8
1
>>> import sympy
2
>>> a = sympy.Rational(3, 2)
3
>>> b = sympy.Rational(4, 6)
4
>>> a
5
3/2
6
>>> b
7
2/3
8