How to read a JSON file in Python
Ever since I have been studying data science, I have been working with csv files, which are comma separated values. I had known there are other types of file types that Python can work with, but I had always steered towards loading and reading csv files. One file that I found in Google Colab is anscombe.json. I never worked with this file because I wasn’t quite sure what to do with it. I decided there is no time like now to learn about json files, so that is the purpose of today’s project.
A json file is a file that stores simple data structures and objects in JavaScript…