trying to test your own programs rather than relying on the grader to tell you if it's right; it will help you for projects and exams Try various different inputs to make sure the program performs well under all circumstances You do not need to do the 4th item below since it's not clear what they are asking for. But you should feel free to experiment with other grading schemes and alternate ways to solve the problems. The following program calculates an overall grade in a course based on three equally weighted exams. ZYDE 6.2.1: Grade calculator: Average score on three exams. Load default template 1 x l grade - float(input("Enter score on Exam 1 (out of 100) '>> 2 exam2 grade - Float (input('Enter score on Exam 2 (out of 100) ') 3 exam3 grade - float(input('Enter score on Exam 3 (out of 100): ')) 5 overall grade - (exal grade + exam2 grade + 3 grade) / 3 7 print("Your overall grade ist', overall grade) Run trying to test your own programs rather than relying on the grader to tell you if it's right; it will help you for projects and exams Try various different inputs to make sure the program performs well under all circumstances You do not need to do the 4th item below since it's not clear what they are asking for. But you should feel free to experiment with other grading schemes and alternate ways to solve the problems. The following program calculates an overall grade in a course based on three equally weighted exams. ZYDE 6.2.1: Grade calculator: Average score on three exams. Load default template 1 x l grade - float(input("Enter score on Exam 1 (out of 100) '>> 2 exam2 grade - Float (input('Enter score on Exam 2 (out of 100) ') 3 exam3 grade - float(input('Enter score on Exam 3 (out of 100): ')) 5 overall grade - (exal grade + exam2 grade + 3 grade) / 3 7 print("Your overall grade ist', overall grade) Run