simple_json = {
'name': 'David',
'city': 'London',
'income': 80000,
}
simple_json_2 = {
'name': 'Taylor',
'city': 'Chicago',
'income': 120000,
}
simple_json_list = [
simple_json,
simple_json_2
]
view raw SIMPLE_JSON.py hosted with ❤ by GitHub