Created
January 21, 2024 13:45
-
-
Save rfeers/03711726ea5d6e0d37cfbabbef2320f6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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