I want to convert a string value into int from a json.
Json
[
{
"date": "23.07. 16:59",
"odd": "3.50",
"change": "+0.05"
},
{
"date": "23.07. 16:07",
"odd": "3.45",
"change": "-0.15"
}
]
I tried to convert in this way json["change"] = int(json["change"]) but got TypeError: string indices must be integers