**关闭。**此题需要debugging details。目前不接受答复。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
昨天关门了。
Improve this question
我只取了2个JSON对象,但在实际的脚本中,我有超过2000个JSON对象和30个JSON数组。
输入:
[
[
{
"Name": "sou",
"Age": "24",
}
],
[
{
"Name": "vim",
"Age": "28",
}
]
]
输出:
[
{
"Name": "sou",
"Age": "24",
},
{
"Name": "vim",
"Age": "28",
}
]
1条答案
按热度按时间kknvjkwl1#
只需在数据上调用
flat()
。