Question: For this project, you will import the json module. Write a class named SatData that reads a JSON file containing data on 2 0 1

For this project, you will import the json module.
Write a class named SatData that reads a JSON file containing data on
2
0
1
0
SAT results for New York City and writes the data to a text file in CSV format. That same JSON file will be provided as a local file in Gradescope named sat.json, so you don't need to upload it to Gradescope. Your code does not need to access the internet. For testing on your computer, download the file at that link and put it in your PyCharm project.
CSV is a very simple format
-
just commas separating columns and newlines separating rows
(
see note below about commas that are part of field names
)
.
You'll see an example of CSV format below. There is a csv module for Python, but you will not use it for this project.
Your class should have:

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 Programming Questions!