Is there a way to change the expression for derivatives when using SymPy in Python?
from sympy import *
x, t = symbols('x t')
expr_diff = Derivative(x, t)
In my code, expr_diff gives dx/dt. However, I would rather get the derivative of x with respect to t expressed as ẋ (x with a dot above).