Hello SymPy users,
Suppose I have a = b**2, and I want to pprint:
2 a = b
How can I do it? The closest I can get is:
#!/usr/bin/python from sympy import * var("a b") a = b**2 pprint({"a": a)
But it
Ideally I want something like:
pprint(a.__name__ + " = " + a)
You received this message because you are subscribed to a topic in the Google Groups "sympy" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/sympy/FRqInVjMO1s/unsubscribe.
To unsubscribe from this group and all its topics, send an email to sympy+un...@googlegroups.com.