Question: 1. Please write the following Python 3 Program. Please show all output. Exceptions Lab Improving input The input() function can generate two exceptions: EOFError or
1. Please write the following Python 3 Program. Please show all output.
Exceptions Lab
Improving input
The input() function can generate two exceptions: EOFError or KeyboardInterrupt on end-of-file(EOF) or canceled input.
Create a wrapper function, perhaps safe_input() that returns None rather rather than raising these exceptions, when the user enters ^C for Keyboard Interrupt, or ^D (^Z on Windows) for End Of File.
Update your mailroom program to use exceptions (and IBAFP) to handle malformed numeric input
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
