SymPy,如何进行精确的符号表示(Rational Issue)?

SymPy, how to perform exact symbolic representation (Rational Issue)?

所以我打算编写一个关于数学的 Web 应用程序,我需要将用户输入转换为 SymPy 表达式而不修改它(简化),例如。所以我想取消此示例中的这种行为。

>>> srepr(Rational(2,4)) #this is the problem
'Rational(1, 2)'

>>> srepr(Rational(2,4,evaluate=False)) #doesn't work
Traceback...

但我已经设法在其他类型的表示中做到了。

>>> srepr(Pow(x,(Mul(e,e,evaluate=False)),evaluate=False)) #nice
"Pow(Symbol('x'), Mul(Symbol('e'), Symbol('e')))"

>>> srepr(sqrt(Integer(8))) #not what I want
'Mul(Integer(2), Pow(Integer(2), Rational(1, 2)))'

>>> srepr(Pow(Integer(8),Rational(1,2),evaluate=False)) #this is the way
'Pow(Integer(8), Rational(1, 2))'

>>> from sympy import E
>>> log(E,evaluate=False)
log(E)

还有没有办法告诉 SymPy 所有表示 不应该被评估?

也许是这样的?

>>> S('2/4',evaluate=False)
2/4
>>> srepr(_)
'Mul(Integer(2), Pow(Integer(4), Integer(-1)))'