Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to read json file in python stack overflow

import json

with open('strings.json') as f:
    d = json.load(f)
    print(d)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #read #json #file #python #stack #overflow
ADD COMMENT
Topic
Name
2+4 =