Question: Can you solve the extra credit problem with the code of number 1 in python please correctly? ASAP Write a program that will ask the

Can you solve the extra credit problem with the code of number 1 in python please correctly? ASAP
Write a program that will ask the user to input the number of credits earned each semester, until 128 credits are earned. - Begin by asking the user to input the number of credits transferred (can AP/IB credits or transferred from another college). - Print the number of semesters the student has been enrolled, followed by the semester credits and the total credits. o There should be an empty line printed before and after each semester statement. o Note that there is one tab after the semester credits colon and two tabs after the total credits colon. - The program should continue asking the user to input number of credits earned in a semester until 128 or more credits are earned. - Once 128 credits have been earned, print a congratulatory message. Below are a few sample runnings of the program. Underlines indicate user input. You can assume there are no input issues and the user will only enter positive integer values. Example 1 Credits transferred: 0 Semester 1 Semester credits: 1616 Total credits: Semester 2 Semester credits: 3216 Total credits: Semester 3 Semester credits: 4816 Total credits: Semester 4 Semestercredits:Totalcredits:641664 EXTRA CREDIT: Exception handling (0.6 points) In Problem \#1, we assume no errors in user entry. However, there are multiple possible user entry exceptions that can occur. Identify two possible errors: one runtime error and one logic error that would lead to a nonsensical result. Describe the runtime and logic errors in code comments and modify your script to catch and address these exceptions
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
