Raise value error : Raise : Statement PYTHON TUTORIALS


PYTHON TUTORIALS » Statement » Raise »

 

Raise value error


import sys

dict = {}
dict[ValueError"Enter a valid value"
dict[IOError"An error occurred in the IO system"
try :
    raise ValueError
except :
    if dict.has_key(sys.exc_type:
        print dict[sys.exc_type]



Leave a Comment / Note


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


PYTHON TUTORIALS

 Navioo Statement
» Raise