1.3 Exception Handling Flashcards
An error that happens during execution of a program
Exception
- IOError
- ImportError
- ValueError
- KeyboardInterrupt
- EOFError
Some common exception errors in Python
If the file cannot be opened
IOError
If python cannot find the module
ImportError
Raised when a built-in operation or function receives an argument that has the right type but an inappropriate value
ValueError
Raised when the user hits the interrupt key (normally ctrl + c or delete)
KeyboardInterrupt
Raised when one of the built-in functions ((input) or raw_input()) hits an end-of-file condition (EOF) without reading any data
EOFError
A single try statement can have ________ except statements
multiple
Used to catch and handle exceptions
try-except block
This try-except statement catches all the exceptions that occur, but isn’t considered good practice because it doesn’t make the programmer identify the root cause of the problem
Try-except-else block
You can use the same except statement to handle multiple exceptions [True or False]
True
This clause is executed no matter what, and is generally used to release external resources
Finally clause
An exception can have an __________, which is a value that gives additional information about the problem. the contents of this vary by exception
argument