read jason python 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 in python
{
"Icons":{
"app icon": "your icon.ico",
"eg icon": "eg.ico"
}
}