美文网首页
Python 文件处理

Python 文件处理

作者: TINGJUN | 来源:发表于2019-03-14 13:56 被阅读0次

    一、Python处理json文本格式

    • 读取json数组,并遍历输出
    with open(r'C:\oneTree.json', 'r',encoding='UTF-8') as f:
        oneTreeDatas = json.load(f)#json列表
    
    for oneTreeData in oneTreeDatas:#遍历输出
        print(oneTreeData)
    

    相关文章

      网友评论

          本文标题:Python 文件处理

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