欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

json:str与dict互转

程序员文章站 2024-03-23 17:54:46
...
import json
a='''{"a":111,"m":2222}'''
#str--->dict
b=json.loads(a)
print(type(b))      #<class 'dict'>

a={"a":111,"m":2222}
#dict--->str
b=json.dumps(a)
print(type(b))      #<class 'str'>
print(repr(b))      #'{"a": 111, "m": 2222}'

上一篇: 力扣第739题题解

下一篇: