nanguofeng1987 发表于 2017-1-4 11:06:23

python中使用json.loads()转换类型为unicode的内容,转换后还是unicode,如何转为dict

从网页上爬下的内容为content ={"_id":"572bfc96231719010035e592","acSN":"210235A0VSB15A000003","finalscore":72,"wanspeed":5,"APpercent":1,"clientspeed":5,"security":1,"wireless":5,"system":5,"Bpercent":1,"__v":0}

type(content)是<type 'unicode'>

使用json.loads(content,encoding='utf-8')转换后显示的还是unicode,怎么能转换为dict

黑盒测试 发表于 2017-1-4 13:23:38

直接.json()就可以吧
页: [1]
查看完整版本: python中使用json.loads()转换类型为unicode的内容,转换后还是unicode,如何转为dict