Introduction to Exception Handling
In this chapter, we are going to look at Exception handling in python.
We'll cover the following...
What do you do when something bad happens in your program? Let’s say you try to open a file, but you typed in the wrong path or you ask the user for information and they type in some garbage. ...