SAT Score Analyzer

You can download the data set from this link: http://catalog.data.gov/dataset/sat-results-e88d7
If you take a quick look at the dataset, you will find a list of schools and their senior student SAT
results for year 2012.
Please use CSV reader to read the data. Note that the first row of the CSV file is column
headers -- use next() function to skip the very first row.
You will need a class with exactly 5 fields for the 5 columns of information you will need from the
CSV file -- you can skip the column named DBN. We will keep a list of schools and do all the
functionality on this list.

import pandas as pd

# I am not using this class since it will waste my time, but we can do some changes for using this class
class School:
    def __init__(self, name="", StudentCount=0, Reading=0, Math=0

猜你喜欢

转载自blog.csdn.net/Linli522362242/article/details/102800411