import json
with open('jsonfile.json') as f:
data = json.load(f)
import json
with open(filename, 'r') as f:
data = json.load(f) # with 4 spaces insted of tab
var = json.loads(people_string)
# loads() is used to convert the JSON String document into the Python dictionary.
print(var)
# 'var' is the data that you want to convert