Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

try - except - finally python

try:
  #some code that may will produce an error
except:
  #some code that will be executed if an error is encountered
finally:
  #this code always will be executed
 
PREVIOUS NEXT
Tagged: #finally #python
ADD COMMENT
Topic
Name
5+7 =