美文网首页
json的四个方法

json的四个方法

作者: 胖虎很可爱 | 来源:发表于2018-04-20 15:55 被阅读0次

    json.dumps

    dicts = [{1: 2, "name": "age", 'hehe': {"name": "chang"}}]
    
    strs = json.dumps(dicts)
    
    python数据类型 --> str
    
    

    json.loads

    strs = '{{1: 2, "name": "age", 'hehe': {"name": "chang"}}}'
    
    dicts = json.loads(strs)
    
    str --> python数据类型
    
    

    json.dump()

    dicts2 = {1: 2, "name": "age"}
    
    f = open('1.txt', 'w')
    
    json.dump(dicts2, f)
    
    把dict写进file
    
    

    json.load()

    f = open('1.txt','r')
    
    dicts = json.load(f)
    
    把file中的读出来--》dict
    
    

    相关文章

      网友评论

          本文标题:json的四个方法

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