如何把python里面的list变成json对象
a=0.123b=[1.1,1.2,1.3,1.4,1.5]c=0.2想生成一个json文档,内容如下{“a”:0.123,“b“:[1.1,1.2,1.3,1.4,1....
a=0.123 b=[1.1,1.2,1.3,1.4,1.5] c=0.2
想生成一个json文档,内容如下{“a”:0.123, “b“:[1.1,1.2,1.3,1.4,1.5], "c":0.2} 展开
想生成一个json文档,内容如下{“a”:0.123, “b“:[1.1,1.2,1.3,1.4,1.5], "c":0.2} 展开
2个回答
展开全部
import json
file = open("your_file_name.txt", 'a') # 追加的方式写入
your_dict = {}
your_dict['a'] = 0.123
your_dict['b'] = [1.1, 1.2, 1.3, 1.4, 1.5]
your_dict['c'] = 0.2
json_str = json.dumps(your_dict, ensure_ascii=False) # 将字典装化为json串
# ensure_ascii=False : 不用ascii,如果有中文的话,没有就或洞无所谓了衫察枯
file.write(json_str+'\n')
拿去 不谢~
--------------------------------------------------------------------------------
输出结果如下:
{"a": 0.123, "c": 0.2, "b": [1.1, 1.2, 1.3, 1.4, 1.5]}
--------------------------------------------------------------------------------------
就没历是不知道为什么c在中间(0.0)
file = open("your_file_name.txt", 'a') # 追加的方式写入
your_dict = {}
your_dict['a'] = 0.123
your_dict['b'] = [1.1, 1.2, 1.3, 1.4, 1.5]
your_dict['c'] = 0.2
json_str = json.dumps(your_dict, ensure_ascii=False) # 将字典装化为json串
# ensure_ascii=False : 不用ascii,如果有中文的话,没有就或洞无所谓了衫察枯
file.write(json_str+'\n')
拿去 不谢~
--------------------------------------------------------------------------------
输出结果如下:
{"a": 0.123, "c": 0.2, "b": [1.1, 1.2, 1.3, 1.4, 1.5]}
--------------------------------------------------------------------------------------
就没历是不知道为什么c在中间(0.0)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询