json 格式的数据在python中表现为字符串str类型的数据import jsondef json_to_dict(my_json: str) -> dict:return json.loads(my_json)def dict_to_json(my_dict: dict) ...
確定! 回上一頁