2017-07-09 23 views

Antwort

3

Machen Sie Ihre Symbole nichtkommutative:

>>> a, b = sympy.symbols('a, b', commutative=False) 
>>> sympy.expand((a + b)**2) 
a*b + a**2 + b*a + b**2 
+0

Great! Danke vielmals:)! – friendlyC

Verwandte Themen