I can't normalize json string looking like that:
{
"Mercy": [
[
"Chicago",
"New Orleans"
]
],
"Zarya": [
[
"Rio de Janeiro",
"Capetown"
],
[
"Rome",
"Seattle"
]
],
"Torbjörn": [
[
"Buenos Aires",
"New York"
],
[
"Capetown",
"Juneau"
],
[
"Istanbul",
"Cairo"
]
]
}
I want to get the dataframe like that: name city1 city2 city3 city4 city5 city6 ..... cityN 0 1 . . . Is it possible?
