Quick Example and Walk-Through JSON with Python
Quick Example and Walk-Through JSON with Python
This is a quick to create a dictionary object , write it to a JSON file and then read back the file and convert it to a dictionary and access the items in the dictionary. Credit to : codebasics.  You can check him out on Youtube In [3]: # lets create a dictionary of books book = {} book['Tom'] = { 'name':'Tom', 'address':'1 red street, NY', 'phone':98988988 } book['Bob'] = { 'name':'Bob',…
View On WordPress











