First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Python (therefore Sage) offers a try/except system to handle exceptions, see this page for more details.

In your case, you can try something like:

try:
    n = exp.n()
except TypeError:
    print "sorry, no"
click to hide/show revision 2
No.2 Revision

Python (therefore Sage) offers a try/except system to handle exceptions, see this page for more details.

In your case, you can try write something like:

try:
    n = exp.n()
except TypeError:
    print "sorry, no"