json字符串转化 dumps loads >>> a={"a":"b","c":"d"}>>> a["a"]'b'>>> str(a)"{'a': 'b', 'c': 'd'}">>> import json>>> python 2023-09-21 135 点赞 2 评论 204 浏览