当前位置:秒懂库 > IT科技 > python,字符串转json
手机版

python,字符串转json

来源:秒懂库 阅读:1.99W 次

python中字符串怎么转json呢?不知道的小伙伴来看看小编今天的分享吧!

python中字符串怎么转json方法:

python字符串转json对象,需要使用json模块的loads函数

# encoding: utf-8

print "str转json"

import json

string_a = '{"accessToken": "521de21161b23988173e6f7f48f9ee96e28", "User-Agent": "Apache-HttpClient/4.5.2 (Java/1.8.0_131)"}'

print "type(string_a): ", type(string_a)

dict_a = json.loads(string_a)  # json_str == dict

print "dict_a: ", dict_a

print "type(dict_a): ", type(dict_a)

python 字符串转json

输出结果:

str转json

type(string_a):  <type 'str'>

dict_a:  {u'accessToken': u'521de21161b23988173e6f7f48f9ee96e28', u'User-Agent': u'Apache-HttpClient/4.5.2 (Java/1.8.0_131)'}

type(dict_a):  <type 'dict'>

python 字符串转json 第2张

拓展资料:

python中json转字符串。

# encoding: utf-8

print "json转str"

import json

json_b = {"accessToken": "521de21161b23988173e6f7f48f9ee96e28", "User-Agent": "Apache-HttpClient/4.5.2 (Java/1.8.0_131)"}

print "type(json_b): ", type(json_b)

str_b = json.dumps(json_b)

print "str_b: ", str_b

print "type(str_b): ", type(str_b)

输出结果:

json转str

type(json_b):  <type 'dict'>

str_b:  {"accessToken": "521de21161b23988173e6f7f48f9ee96e28", "User-Agent": "Apache-HttpClient/4.5.2 (Java/1.8.0_131)"}

type(str_b):  <type 'str'>

本文链接:https://www.miaodongku.com/itkj/5mo3qq.html

Copyright © 2024. 秒懂库 All right reserved. 黑ICP备20202358号-2

文字美图素材,版权属于原作者。部分文章内容由网友提供推送时因种种原因未能与原作者联系上,若涉及版权问题,敬请原作者联系我们,立即处理。