Handling Exceptions : Exception Handle : Exception PYTHON examples


PYTHON examples » Exception » Exception Handle »

 

Handling Exceptions


 

# It is possible to write programs that handle selected exceptions. Look at the following example, which prints a table of inverses of some floating point numbers:

numbers = [0.33332.5010]
for x in numbers:
   print x,
   try:
       print 1.0 / x
   except ZeroDivisionError:
       print '*** has no inverse ***'

   
  



Leave a Comment / Note


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


PYTHON examples

 Navioo Exception
» Exception Handle