python 将dictionary 转化成json并且写入和读取json文件
Posted ufovsuso
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 将dictionary 转化成json并且写入和读取json文件相关的知识,希望对你有一定的参考价值。
1 import json 2 3 #将数据存入json文件 name:[gender,age,password] 4 user_dict = {"tracy": ["female",16,"123456"], 5 "bella": ["female",17,"password"], 6 "colin": ["male",18,"colin"] 7 } 8 #写入json文件 9 with open(‘userinfo.json‘, ‘w‘) as json_file: 10 json.dump(user_dict, json_file) 11 #读取json文件并打印 12 with open(‘userinfo.json‘, ‘r‘) as json_file: 13 load_dict = json.load(json_file) 14 print(load_dict["tracy"])
以上是关于python 将dictionary 转化成json并且写入和读取json文件的主要内容,如果未能解决你的问题,请参考以下文章
在javascript中循环遍历python-dictionary-turned-into-json
python使用sklearn中的DictVectorizer函数将字典数据(dictionary)转化为numpy数组使用get_feature_names函数获取数组指定列位置的标签信息