Question: USING PYTHON Average = 55.75 *** The sorted List of student names *** bill bob joe mary *** The sorted List of student score ***

 USING PYTHON Average = 55.75 *** The sorted List of studentnames *** bill bob joe mary *** The sorted List of studentscore *** 40 55 58 70 O A - when score is

USING PYTHON

Average = 55.75 *** The sorted List of student names *** bill bob joe mary *** The sorted List of student score *** 40 55 58 70 O A - when score is >= best score - 10 B - when score is >= best score - 20 C- when score is >= best score - 30 D- when score is >= best score - 40 F - Otherwise. O O Calculate and display the average of test scores. Sort the names in alphabetical order and display the sorted list. Sort the test scores in ascending order and display the sorted list. * SPECIAL NOTE: You're sorting the names and test scores independently. Allow the user to enter a student's name and display the corresponding test score. Issue an error message if the name is not in the list of students. Use a loop to allow the user to enter as many names as the user wishes to enter. Use the sentinel value done to exit the search process. See the note at the end of this file for a simple algorithm to search for data. Sample interaction: Note that this is just a sample test case. Your code should work for any set of input. Your output should be VERY SIMILAR to the output shown below. The grade report heading and the format of the output must match. ******A simple process to search for data. Set found = 0 Set index = 0 While found == 0) and index

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Heres a Python program that fulfills the requirements python def displayaveragescores average sumsco... View full answer

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!