try then finally python code example
Example 1: try catch python
try:
print("try to run this block")
except:
print("run this bock if there was error in earlier block")
Example 2: python finally keyword
try:
x > 3
except:
print("Something went wrong")
else:
print("Nothing went wrong")
finally:
print("The try...except block is finished")