| 1 | initial version |
try:
E.solve_left(T)
A=E.solve_left(T)
except:
A=E.solve_left(p*T)
| 2 | No.2 Revision |
You need to handle an exception (this is Python feature inherited in Sage):
try:
E.solve_left(T)
A=E.solve_left(T)
except:
A=E.solve_left(p*T)
| 3 | No.3 Revision |
You need to handle an exception (this is Python feature inherited in Sage):
try:
E.solve_left(T)
A=E.solve_left(T)
except:
A=E.solve_left(p*T)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.