diff --git a/Loading json file.py b/Loading json file.py new file mode 100644 index 0000000..6e80727 --- /dev/null +++ b/Loading json file.py @@ -0,0 +1,5 @@ +import json +with open('AppData.json',encoding='utf-8') as F: + json_data=json.loads(F.read()) +print(json_data["Dapps"][0]["id"]) +