diff --git a/Python/json_to_dict.py b/Python/json_to_dict.py new file mode 100644 index 0000000..b869c5e --- /dev/null +++ b/Python/json_to_dict.py @@ -0,0 +1,3 @@ +import json +def json_to_dict(json_str): + return json.loads(json_str)