This program computes a final score for a series of quiz scores: the sum is the total after dropping the two lowest scores. The program uses a list.
Complete the code, PART 1 & PART 2. Part 1 will add input from the user to the values list. Part 2 is a function that removes the minimum value from a list
Example of the program execution. You can test your solution to see if it matches the output
Please enter values, Q to quit:
12
14
12
3
2
Q
Final score: 38.0
List Functions and Operations reference