using try and except, what is wrong with this?

Steffen Kirschke nospamsteffen at nospam.molli15.org
Tue May 27 05:14:01 EDT 2003


David Ang wrote:

>>>> try:
> this_fail()
>     except ZeroDivisionError, detail:
> 
> IndentationError: unindent does not match any outer indentation level
> (line 3)
> 
> thanks.
try:
        this_fail()
except ZeroDivisionError, detail:
        pass (or anything else you want to do there)






More information about the Python-list mailing list