使用百度翻译api获得的数据python默认编程bytes对象了,这样bytes->string->json还是字符串,怎么样才能直接获得或者转换为字典呢?
https://gist.github.com/Ka-chanNi/6761c668f1ec745b9550
输出
1
aaaa007cn 2015-02-02 22:05:47 +08:00
|
3
aaaa007cn 2015-02-02 23:56:21 +08:00
从 gist 看
sec_result = new_result.decode('ascii') new_result(bytes) → sec_result(str) json.loads 是 str → dict 你不就是想“转换为字典”么 所以你到底想干什么 |