首页 > 编程语言 > 详细

python np array转json

时间:2019-11-03 01:59:45      阅读:223      评论:0      收藏:0      [点我收藏+]

 np array转json

import numpy as np
import codecs, json 

a = np.arange(10).reshape(2,5) # a 2 by 5 array
b = a.tolist() # nested lists with same data, indices
file_path = "/path.json" ## your path variable
json.dump(b, codecs.open(file_path, w, encoding=utf-8), separators=(,, :), sort_keys=True, indent=4) ### this saves the array in .json format

json转np array

obj_text = codecs.open(file_path, r, encoding=utf-8).read()
b_new = json.loads(obj_text)
a_new = np.array(b_new)

 

python np array转json

原文:https://www.cnblogs.com/yinliang/p/11784933.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!