Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

create dict from json file python

import json

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