Working with the Exception Information : Error Exception : Statement PYTHON TUTORIALS


PYTHON TUTORIALS » Statement » Error Exception »

 

Working with the Exception Information


import sys

try :
        raise ValueError, "Got an error"
except :
        if sys.exc_type == ValueError :
               print "Value Error"
        else :
               print "Something else"



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Statement
» Error Exception