Luke Salamone's Blog

Python: Read & Write Json (opens in new tab)

Often it is useful to save python data to json files. The following code will demonstrate how that can be done. “God bless JSON!” ~ a soon to be famous programmer import json data = {'a': 1, 'b':'hello', 'c':False} filename = 'awesome_data.json' # write data to file with open(filename, 'w') as f: json.dump(data, f) # read json from file with open(filename, 'r') as f: data = json.load(f) print(data) # prints {'a': 1, 'b':'hello', 'c':False}

Read the original article
Sign in to keep reading the full article.

Keyboard Shortcuts

Navigation

Next / previous post
j/k
Open post
oorEnter
Preview post
v

Post Actions

Love post
a
Like post
l
Dislike post
d
Undo reaction
u
Save / unsave
s

Recommendations

Add interest / feed
Enter
Not interested
x

Go to

Home
gh
Interests
gi
Feeds
gf
Likes
gl
History
gy
Changelog
gc
Settings
gs
Discover
gb
Search
/

General

Show this help
?
Submit feedback
!
Close modal / unfocus
Esc

Press ? anytime to show this help