Python Try Else


Try Else

You can use the else keyword to define a block of code to be executed if no errors were raised:

Example

In this example, the try block does not generate any error:

try:
  print("Hello")
except:
  print("Something went wrong")
else:
  print("Nothing went wrong")
Try it Yourself »


Copyright 1999-2023 by Refsnes Data. All Rights Reserved.