Skip to content

Instantly share code, notes, and snippets.

@rfeers
Created January 21, 2024 13:45
Show Gist options
  • Save rfeers/03711726ea5d6e0d37cfbabbef2320f6 to your computer and use it in GitHub Desktop.
Save rfeers/03711726ea5d6e0d37cfbabbef2320f6 to your computer and use it in GitHub Desktop.
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
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment