Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

hwo to except every error in python try statemen

try:
    print "Performing an action which may throw an exception."
except Exception, error:
    print "An exception was thrown!"
    print str(error)
else:
    print "Everything looks great!"
finally:
    print "Finally is called directly after executing the try statement whether an exception is thrown or not."
 
PREVIOUS NEXT
Tagged: #hwo #error #python #statemen
ADD COMMENT
Topic
Name
6+9 =