Suppose that I have the following array of json objects, I want to convert them to the tsv format.
[
{
"x": "1",
"y": "2",
"z": "3"
},
{
"x": "6",
"y": "7",
"z": "B"
}
]
Does anyone have a good solution to this? (python's json module only allow reading json object, but how to read an array of json object?)
x<TAB>y<TAB>z
1<TAB>2<TAB>3
6<TAB>7<TAB>8