JSONからスラッシュを削除する方法 - コード例と共に解説
文字列操作を使用する方法:import json def remove_slashes(json_str): json_str = json_str.replace("/", "") return json.loads(json_str) # 使用例 json_data = '{"name": "John/Jane", "age": 30}' json_data = remove_slashes(json_data) print(json_data)>>More