dictionary to json new file code example
Example: create dict from json file python
import json
with open("data.json", "r") as json_file:
my_dict = json.load(json_file)
import json
with open("data.json", "r") as json_file:
my_dict = json.load(json_file)