python字符串转换为json_在python2.7中将原始字符串转换为JSON对象

我正在查询PostgreSQL服务器以获取数据,并且特定的json对象实际上以字符串形式返回.我试过跟随,但没有给出正确的输出:(这是i

python输出)

test

Out[103]: '{"max"=>28, "min"=>18, "custom"=>[{"id"=>"12345","name"=>"test_pur"}]}'

In[104]: test.replace("=>",":")

Out[104]: '{"max":28, "min":18, "custom":[{"id":"12345", "name":"test_pur"}]}'

In[105]: j_obj = json.dumps(test)

In[106]: j_obj

Out[106]: '"{\\"max\\"=>28, \\"min\\"=>18, \\"custom\\"=>[{\\"id\\"=>\\"12345\\", \\"name\\"=>\\"test_pur\\"}]}"'

如何通过识别“:”符号将字符串转换为json?

当我尝试“json.loads”时.以下是错误:

Traceback (most recent call last):

File "/Library/Python/2.7/site-packages/IPython/core/interactiveshell.py", line 3035, in run_code

exec(code_obj, self.user_global_ns, self.user_ns)

File "", line 1, in

data = json.loads(temp)

File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/__init__.py", line 338, in loads

return _default_decoder.decode(s)

File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/decoder.py", line 365, in decode

obj, end = self.raw_decode(s, idx=_w(s, 0).end())

File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/decoder.py", line 381, in raw_decode

obj, end = self.scan_once(s, idx)

ValueError: Expecting : delimiter: line 1 column 11 (char 10)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值