Question: Exception Handling You decide to upload your recent project to a programming community website for feedback, and one thing that community users keep pointing to

Exception Handling

You decide to upload your recent project to a programming community website for feedback, and one thing that community users keep pointing to is the lack of exception handling. Realizing that they are correct, you decide to rectify the situation and improve your programs or at least one of them. Take one of the programs you designed over the past couple of weeks and enhance the program with exception handling code. Your program should incorporate the TRY and EXCEPT blocks and handle any errors and exceptions that you can find.

For this project:

You will submit your python code in either the original .py file, or copied into a .txt file.

A screenshot of your code having been executed and demonstrating your exception handling

Week #1

#!/usr/bin/python print('Welcome to the Express Lane!') firstPrice =float(input('Enter the first price: ')) secondPrice =float(input('Enter the second price: ')) thirdPrice =float(input('Enter the third price: ')) fourthPrice =float(input('Enter the fourth price: ')) finalPrice =float(input('Enter the final price: ')) subTotal =firstPrice + secondPrice + thirdPrice + fourthPrice + finalPrice salesTax = 0.06*subTotal grandTotal =subTotal + salesTax print ('Subtotal: {:.2f}'.format(subTotal)) print ('Sales tax:{:.2f}'.format(salesTax)) print ('Total:{:.2f}'.format(grandTotal)) 

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!