Question: Write a Python function named calc_mark() that takes a students individual quiz marks out of 10 in a string separated by a comma & multiple

Write a Python function named calc_mark() that takes a students individual quiz marks out of 10 in a string separated by a comma & multiple spaces. The function then calculates & returns his/her final quiz mark. You can assume the minimum number of quizzes taken is 2. Lets say, there were a total n number of quizzes taken. The final quiz mark will be calculated as follows: If n equals or less than 3, then final_mark = average mark of best (n-1) quizzes Otherwise, final_mark = average mark of best (n-2) quizzes [You are not allowed to use built-in functions sum(), max(), min() to solve this problem.] ================================================ Function Call 1: calc_mark("7 , 9 , 6 , 8 , 7") Sample Output 1: Given marks: [7,9, 6, 8, 7] 8.0 Explanation 1: Since the total number of quizzes is greater than 3, the final mark will be: (9 + 8 + 7) / 3 = 8.0 which will be returned and printed in the function call. ================================================ Function Call 2: calc_mark("10 , 6 , 8") Sample Output 2: Given marks: [10, 6, 8] 9.0 Explanation 2: In this case, the final mark will be: (10 + 8) / 2 = 9.0 which will be returned and printed in the function call.

PLEASE UPLOAD A SCREENSHOT OF THE CODE AND USE COMMENT FOR BETTER UNDERSTANDING. THANK YOU

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!