json dict to python dict onie code example
Example 1: python dictionary to json
import json
appDict = {
'name': 'messenger',
'playstore': True,
'company': 'Facebook',
'price': 100
}
app_json = json.dumps(appDict)
print(app_json)
Example 2: json file to dict python
import json
with open("data.json", "r") as json_file:
my_dict = json.load(json_file)