I am new to Python, my Json file looks like this:
[
{
"Symbol": "TCS",
"Series": "EQ",
"Date": "04-May-2020",
"Prev Close": 2014.45,
"Open Price": 1966.0,
"High Price": 1966.0,
"Low Price": 1913.65,
"Last Price": 1930.5,
"Close Price": 1930.45,
"Average Price": 1939.3,
"Total Traded Quantity": 3729409.0,
"Turnover": 7232442404.05,
"No. of Trades": 165528.0,
"Deliverable Qty": 1752041.0,
"% Dly Qt to Traded Qty": 46.98
}
]
it should be like this
{
"tcs":[
{
"Symbol": "TCS",
"Series": "EQ",
"Date": "04-May-2020",
"Prev Close": 2014.45,
"Open Price": 1966.0,
"High Price": 1966.0,
"Low Price": 1913.65,
"Last Price": 1930.5,
"Close Price": 1930.45,
"Average Price": 1939.3,
"Total Traded Quantity": 3729409.0,
"Turnover": 7232442404.05,
"No. of Trades": 165528.0,
"Deliverable Qty": 1752041.0,
"% Dly Qt to Traded Qty": 46.98
}
]
}
How can I modify it by Python?