Skip to content

Instantly share code, notes, and snippets.

@ParthNipunDave
Created April 17, 2021 12:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ParthNipunDave/4844abf99ba62849848aededb2e07588 to your computer and use it in GitHub Desktop.
Save ParthNipunDave/4844abf99ba62849848aededb2e07588 to your computer and use it in GitHub Desktop.
with open("model_dictionary.json",'w') as f:
json.dump(model_dict,f)
f.close()
with open("company_dictionary.json",'w')as f:
json.dump(company_dict,f)
f.close()
with open("fuelType_dictionary.json",'w') as f:
json.dump(fueltype_dict,f)
f.close()
with open("transmission_dictionary.json",'w')as f:
json.dump(transmission_dict,f)
f.close()
with open("vitals_dictionary.json",'w')as f:
json.dump(vals,f)
f.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment