how to build a json object with list in python python 3.9 code example
Example: python json dump
import json
with open("data_file.json", "w") as write_file:
json.dump(data, write_file)
import json
with open("data_file.json", "w") as write_file:
json.dump(data, write_file)