Question: Our programming professor ask us to write an program about this question on python. But I am not sure where I got wrong. And how

Our programming professor ask us to write an program about this questionOur programming professor ask us to write an program about this question on python. But I am not sure where I got wrong. And how I wrote the program I attached below, please help me rewrite my program.

on python. But I am not sure where I got wrong. And

Write a program that gets five integer test scores from the user, calculates their average, and prints it on the screen. Test your program with the following data: Run 1: 40, 80, 97, 32, 87 Run 2: 60, 90, 100, 99, 95 Run your program and copy and paste the output to a file. Upload your source code and the output file on the link above. III def main(): developerInfo() test1_1 = float(input('Enter the first test score: 40')) #the run 1 first exam test1_2 = float(input('Enter the second test score: 80')) #the run 1 second exi test1_3 = float(input('Enter the third test score: 97')) #the run 1 third exam test1_4 = float(input( 'Enter the fourth test score: 32')) #the run 1 fourth exi test1_5 = float(input('Enter the fifth test score: 87')) ##the run 1 fifth exar # Calculate the average of the three scores # and assign the result to the average variable. average = (test1_1 + test1_2 + test1_3 + test1_4 + test1_5) / 5.0 Show Less #Display the average. print('The average score is', average) s question on python. But I am not sure

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!