Question: Use Python def studentGrades(gradeList): Takes a nested list as an argument and returns a list with the average score for each list in integer

Use Python

Use Python def studentGrades(gradeList): """ Takes a nested list as an argument

def studentGrades(gradeList):

"""

Takes a nested list as an argument and returns a list with the

average score for each list in integer format

>>> grades = [

... ['Student', 'Quiz 1', 'Quiz 2', 'Quiz 3'],

... ['John', 100, 90, 80],

... ['McVay', 88, 99, 111],

... ['Rita', 45, 56, 67],

... ['Ketan', 59, 61, 67],

... ['Saranya', 73, 79, 83],

... ['Min', 89, 97, 101]]

>>> studentGrades(grades)

[90, 99, 56, 62, 78, 95]

>>> grades = [

... ['Student', 'Quiz 1', 'Quiz 2', 'Quiz 3','Final' ],

... ['John', 100, 90, 80, 90],

... ['McVay', 88, 99, 11, 15],

... ['Rita', 45, 56, 67, 89],

... ['Ketan', 59, 61, 67, 32],

... ['Saranya', 73, 79, 83, 45],

... ['Min', 89, 97, 101, 100]]

>>> studentGrades(grades)

[90, 53, 64, 54, 70, 96]

>>> grades = [

... ['Student', 'Quiz 1', 'Quiz 2'],

... ['John', 100, 90],

... ['McVay', 88, 99],

... ['Min', 89, 97]]

>>> studentGrades(grades)

[95, 93, 93]

"""

# --- YOU CODE STARTS HERE

# --- CODE ENDS HERE

[5 pts] Write the function studentGrades(gradeList) that takes a nested list with the following structure: First list is always a descriptive header Subsequent lists hold all the data. - For lists that hold data, the first element is always a string, the rest of the elements are numeric values. Each list (except for the first one) represents the grades of the student and the first element of each list contains the name of the student grades ('Student', 'Quiz 1', 'Quiz 2', 'Quiz 3'],# List 1, header [John',100, 90, 80 ['McVay', 88, 99, 1111, ['Rita',45, 56, 67 ['Ketan', 59, 61, 67], I'Saranya', 73, 79, 831, ['Min', 89, 97, 101]] and returns ONE list with the average score for each student in INTEGER format. Hint: The method sum adds all the numeric elements of a list (sum([1,2,8.1]) returns 11.1). grades -[ ['Student','Quiz 1', 'Quiz 2", 'Quiz 3'1, ['John, 100, 90, 80], ['McVay, 88, 99, 111, ['Rita',45, 56, 67], ['Ke 100+90+80 270 270/3 90 tan', 59, 61, 67], a', 73, 79, 83, ['Min', 89, 97, 101]] >>studentGrades (grades) [90, 99,56, 62,78, 95) grades -[ ['Student,"Quiz 1', Quiz 2,'Quiz 3', 'Final' , ['John',100, 90, 80, 90, ['McVay, 88, 99, 11, 15], ['Rita', 45, 56, 67, 89), ['Ketan', 59, 61, 67, 32, ['Saranya', 73, 79, 83, 45], ['Min, 89, 97, 101, 10011 100+908090 360 360/4 90 >>> studentGrades (grades) 90, 53, 64, 54, 70, 96] grades[ ['Student', 'Quiz 1',Quiz 2'], ['John,100, 90], ['McVay, 88, 99], [Min", 89, 97]] 8899 187 187/2 93.5 >>studentGrades (grades) [95, 93, 93]

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!