from sympy import *
var('x y')
eqn=x**2+y
print(eqn.diff(x)) # 2*x but required 2*x+y'-- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/41617196-7590-4295-88c7-d48885549258%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
