As silly as it may sound, I would like to use compound greek letters as a single symbol in SymPy. For example, if the following is entered in a Jupyter notebook:
import sympy as sp
ab = sp.Symbol("alpha beta")
sp.pprint(ab)
ab
behaves as desired when used in symbolic manipulations, but the output is:
alpha beta
I would like the output to be:
α⋅β
I could use the subs command after manipulations, like so:
ab.subs({ab : sp.Symbol("alpha") * sp.Symbol("beta")})
but this is tedious and undesirable.