zoukankan      html  css  js  c++  java
  • python 命令行读取json文件

    macname@bogon testenv3.7 % cat file.json 
    {
        "code": 200,
        "msg": "请求成功",
        "data": {
            "username": "abc",
            "mobile": "18611751121"
        },
        "task":[{
            "username": "abc1",
            "mobile": "18611751121"
        },
        {
            "username": "abc2",
            "mobile": "18611751121"
        }]
    }
    macname@bogon testenv3.7 % 
    macname@bogon testenv3.7 % python3 -m json.tool file.json
    {
        "code": 200,
        "msg": "u8bf7u6c42u6210u529f",
        "data": {
            "username": "abc",
            "mobile": "18611751121"
        },
        "task": [
            {
                "username": "abc1",
                "mobile": "18611751121"
            },
            {
                "username": "abc2",
                "mobile": "18611751121"
            }
        ]
    }

  • 相关阅读:
    大二暑期周总结(四)
    大二暑期周总结(三)
    寒假十七
    寒假十六
    寒假十五
    寒假十四
    寒假十三
    寒假十二
    寒假十一
    寒假十
  • 原文地址:https://www.cnblogs.com/sea-stream/p/12162764.html
Copyright © 2011-2022 走看看