You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BrainData/a.md

5 lines
138 B

在python中如何将一个numpy数组转换为json格式
dic={}
  dic['index']=arr.tolist()
  dicJson = json.dumps(dic)