gpt4 book ai didi

Python 元组到 JSON 输出

转载 作者:太空狗 更新时间:2023-10-29 17:00:00 26 4
gpt4 key购买 nike

我如何打开它:

data = ((1, '2011-01-01'), (2, '2011-01-02'), (1, '2011-01-15'), (3, '2011-02-01'))

进入这个:

{
"item": [
"1",
"2",
"1",
"3",
],
"settings": {
"axisx": [
"2011-01-01",
"2011-01-02",
"2011-01-15",
"2011-02-01"
],
"axisy": [
"0",
"100"
],
"colour": "ff9900"
}
}

或者更确切地说,是否有任何我可以阅读的有用资源,以便我能够生成该 JSON 输出?所以我知道我需要将我的数据“转换”为正确的数据结构。之后就像 json.dumps(data)

一样简单

谢谢

最佳答案

使用 json library .

然后使用如下方式转换您的数据:

somedict = { "item"     : [ x[0] for x in data ],
"settings" : { "axisx" : [ x[1] for x in data ],
"axisy" : [ 0, 100],
"colour" : "ff9900" }
}

并调用:

print json.dumps(somedict)

关于Python 元组到 JSON 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5087903/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com