美文网首页
python使用json读写

python使用json读写

作者: zhnidj | 来源:发表于2018-07-01 10:07 被阅读0次

    写:

    with open(os.path.join(out_dir,'val.json'),"w") as v:

            json.dump(val_dict, v)

    读:

    Train_file = '/root/zhn/video_highlights/dataset/regression/train.json'

    Train_file = open(Train_file,'r')

    Train=json.load(Train_file)

    相关文章

      网友评论

          本文标题:python使用json读写

          本文链接:https://www.haomeiwen.com/subject/yndcuftx.html