sampleqa.in tutorials, Python Programming  tutorial

Python Exception Handling


Syntax:

        try:
             suite
        except [type [as value]]:
        except [type [as value]]*:
        [else:
            suite]
        [finally:
            suite
        ]
        
Built-in Exception Types
  • OSError
  • IOError
  • EnvironmentError

ADS