obj = {"name": "hello world"} for key, value in obj.items(): print(key + ':' + value)
import json with open('items.json') as data_file: data = json.load(data_file)