try statement encloses pieces of code where one or more known exceptions may occur : Try : Statement PYTHON TUTORIALS


PYTHON TUTORIALS » Statement » Try »

 

try statement encloses pieces of code where one or more known exceptions may occur


try:
    1/0
except ZeroDivisionError:
    print "Can't divide anything by zero."



Leave a Comment / Note


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


PYTHON TUTORIALS

 Navioo Statement
» Try