How can I get the right notation?(e^3x)
I'd like to match the order between constant and variable. For example, generally we write a tangent function as e^3x, but in sage It is reversed lik xe^3 and the code is var('x') print(e ^ 3 * x) How can I get the right notation?