Python URL编解码 encode

发布时间:2019-09-12 07:55:41编辑:auto阅读(1648)

    python中对URL编码

    urllib包中parse模块的quote和unquote

    from urllib import parse
    
    #这个是js的结果
    # encodeURIComponent('中国')
    # "%E4%B8%AD%E5%9B%BD"
    jsRet='%E4%B8%AD%E5%9B%BD'
    print(parse.unquote(jsRet))       #输出:中国
    print(jsRet==parse.quote('中国'))  #输出:True

关键字