python tornado.escape.json_encode和tornado.escape.json_decode

1.python tornado.escape.json_encode
json对指定的python对象进行编码
2.python tornado.escape.json_decode
返回指定json字符串的python对象,支持str和bytes输入

import tornado.escape

req = {'44': 344, '23': 5}
print(req, type(req))


req12 = {'44': 344, '23': 5}
req1 = tornado.escape.json_encode(req12)
print(req1, type(req1))

print(tornado.escape.json_decode(req1), type(tornado.escape.json_decode(req1)))

**打印结果:
{‘23’: 5, ‘44’: 344} <class ‘dict’>
{“23”: 5, “44”: 344} <class ‘str’>
{‘23’: 5, ‘44’: 344} <class ‘dict’>
**

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值