将json中的对象转换为python3中的数组的最简单方法

时间:2017-05-10 16:43:23

标签: json python-3.x

我在python3中有一个像这样的json:

{
    "main": 2017,
    "titles": {
        "first": {
            "theone": 1,
            "thetwo": 2
        },
        "second": {
            "news": ["BBC", "CNN"],
            "olds": 1990
        },
        "ticker": ["A", "B", "C"]
    }
}

我需要将json对象“titles”更改为json数组“titles”,如下所示:

{
    "main": 2017,
    "titles": [
        "first": {
            "theone": 1,
            "thetwo": 2
        },
        "second": {
            "news": ["BBC", "CNN"],
            "olds": 1990
        },
        "ticker": ["A", "B", "C"]
    ]
}

请告诉我 - 在Python 3中进行此更改的最简单方法是什么?

0 个答案:

没有答案