Python
import json
# to read a json filedata = {}withopen(input_file) as json_file:data = json.load(json_file)for k,v in data.items():print(f”{v}”)
Python
import json
# to read a json filedata = {}withopen(input_file) as json_file:data = json.load(json_file)for k,v in data.items():print(f”{v}”)