skip to Main Content

How to add sub item to json in for loop

I am trying to achieve the following json output: My current code: #!/usr/bin/env python3.9 import json complete_lst = [] url_lst = ['https://', 'https://', 'https://'] complete_lst.append({'title': 'Hello'}) for url in url_lst: complete_lst.append({'watch': {'Season1': {'url': url}} }) with open("Hello.json", "w") as file:…

VIEW QUESTION
Back To Top
Search