Issue
I was using Sympy in Jupyter where I realized I cant display two things in the same line with display()
command. I know how to do it with print()
but since I am using Sympy I need to also do it with display()
. Can someone help me please? Thank you!
The code:
display('Value =', smp.Symbol('\Gamma_{\mu\nu}^{\lambda}'))
Solution
For your problem, you may use "Eq":
value, gm, lam = symbols('Value, Gamma_mu_nu ,lambda')
Eq(value,gm**lam)
Answered By - 2diabolos.com
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.