I have an existing json file and want to create a list for a specific field how do I create it? I went through other stackoverflow questions specific to python, but not quite what I was looking for.
Current JSON file:
[{"team_name": "Journalist", "team_members": "Ali Smith, Jon Doe"},
{"team_name": "Journalist & Media", "team_members": "A Smith, Micheal P"},
{"team_name": "Photography", "team_members": "Micheal P, Adam A"}]
Final output file:
[{"team_name": "Journalist", "team_members": ["Ali Smith", "Jon Doe"]},
{"team_name": "Journalist & Media", "team_members": ["A Das", "Micheal P"]},
{"team_name": "Photography", "team_members": ["Micheal P", "Adam A"}]