Inactive Tutor answered 10/13/20
Hello, and thanks for the question!
In short, yes, Python is one of the easier languages to use for working with JSON data. Python core has a json module you can import that parses them and turns them into Python dictionaries.
https://docs.python.org/3/library/json.html
If you have a dataset as a string, you can just use:
If you want to loop over them, you can simply iterate over each key in the dictionary using "dictionary.items()". Since a dictionary (hashmap) is the same structure as a JSON (set of key:value pairs), it translates nicely.
Hope that helps!