How to normalize a list from a json file using python?
I have a sample file like this sample.json { "school":[ { "testId":123, "testName":"test1", "Teachers":[ { "Tid":111, "Tname":"aaa" }, { "Tid":222, "Tname":"bbb" }, { "Tid":333, "Tname":"ccc" }, { "Tid":444, "Tname":"ddd" } ], "location":"India" } ] } i need to normalize the Teachers list from this file, my code: import json import pandas as pd with open(‘sample.json’,… Read More How to normalize a list from a json file using python?