import json data={'name':'John','age':30} with open('file.json','w') as f: json.dump(data,f) with open('file.json') as f: print(json.load(f))