Try, Except, else and Finally in Python - GeeksforGeeks

PHOTO EMBED

Mon Nov 14 2022 22:12:15 GMT+0000 (Coordinated Universal Time)

Saved by @rckt #python

try:
       # Some Code.... 

except:
       # optional block
       # Handling of exception (if required)

else:
       # execute if no exception

finally:
      # Some code .....(always executed)
content_copyCOPY

https://www.geeksforgeeks.org/try-except-else-and-finally-in-python/