1.3 Exception Handling Flashcards

1
Q

An error that happens during execution of a program

A

Exception

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. IOError
  2. ImportError
  3. ValueError
  4. KeyboardInterrupt
  5. EOFError
A

Some common exception errors in Python

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

If the file cannot be opened

A

IOError

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

If python cannot find the module

A

ImportError

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Raised when a built-in operation or function receives an argument that has the right type but an inappropriate value

A

ValueError

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Raised when the user hits the interrupt key (normally ctrl + c or delete)

A

KeyboardInterrupt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Raised when one of the built-in functions ((input) or raw_input()) hits an end-of-file condition (EOF) without reading any data

A

EOFError

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

A single try statement can have ________ except statements

A

multiple

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Used to catch and handle exceptions

A

try-except block

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

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

A

Try-except-else block

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

You can use the same except statement to handle multiple exceptions [True or False]

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

This clause is executed no matter what, and is generally used to release external resources

A

Finally clause

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

An exception can have an __________, which is a value that gives additional information about the problem. the contents of this vary by exception

A

argument

How well did you know this?
1
Not at all
2
3
4
5
Perfectly