'Continue script execution after try/except exception with Python

Coming from other scripting languages I'm probably missing something fundamental here.

How do I continue on with the rest of the script when an exception is raised?

Example:

errMsg = None
try:
    x = 1
    y = x.non_existent_method()
except ValueError as e:
    errMsg = str(e)

if errMsg:
    print('Error')
else:
    print('All good')

The script just fails. Is there a way to continue with the rest?

Thanks in advance



Solution 1:[1]

It should be Exception and not ValueError:

errMsg = None
try:
    x = 1
    y = x.non_existent_method()
except Exception as e:
    errMsg = str(e)

if errMsg:
    print('Error')
else:
    print('All good')

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 vinzee