Created
April 7, 2022 07:20
-
-
Save pointofpresence/5c170dde9eb96cb85066e8562985d8e2 to your computer and use it in GitHub Desktop.
Python read JSON from file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
with open('data.json', 'w') as f: | |
json.dump(data, f) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment