import json def json_to_python(): with open("shapes.json") as lines: data = json.load(lines) for shape in data["shapes"]: print("Type:", shape["type"]) print("Color:", shape["color"]) print() return True print(json_to_python())