Lab 11: Working with Strings and Files

Using this spreadsheet of hypothetical grades (grades.csv), write a program that will parse a .csv file (using split) and generate a list containing the score values from the second column. Test each function on the grades from the grades.cvs spreadsheet. You should get 98 for the max, 32 for the min, 83 for the median and 74.22 for the average.

Lab Deliverable

A Python program which parses a .cvs file and uses each of the previous functions at least once to print the max, min, med and avg scores in sentence form.