Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

json file to dict python

import json

with open("data.json", "r") as json_file:
    my_dict = json.load(json_file)
 
PREVIOUS NEXT
Tagged: #json #file #dict #python
ADD COMMENT
Topic
Name
9+2 =