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题题解