Question: The following program reads a comma separated value (CSV) file of student grades. Each line of the file contains two values: the student ID and
The following program reads a comma separated value (CSV) file of student grades. Each line of the file contains two values: the student ID and the grade. For example
ID534240025,A-
Complete the following loop that reads the file and extracts the two values.
infile = open("studentList.csv") for line in infile: line = line.strip() (student, grade) = _____________ Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
