I have one txt file: resultJSON.txt
the data in the txt file is in JSON format.
{
    "term": "dog",
    "results": [{
        "filename": "1.jpg",
        "numberID": "D12"
    }, {
        "filename": "23.jpg",
        "number": "E52"
    }]
}
I would like to read the txt into python and parse the JSON.
How to read the txt???
 
    