From 99e64bc6736591dd47ddbf4cfee5e6010f437c24 Mon Sep 17 00:00:00 2001 From: Nischay mrzn <129774293+Nischaymrzn@users.noreply.github.com> Date: Mon, 28 Oct 2024 12:08:36 +0545 Subject: [PATCH] Create json_to_dict.py --- Python/json_to_dict.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Python/json_to_dict.py 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)