Flattens JSON objects in Python. flatten_json flattens the hierarchy in your object which can be useful if you want to force your objects into a table.
"""Flatten an arbitrarily nested list into a single flat list. Implement this function.""" # Hint: For each item, check if it is a list (isinstance). If so, recurse. If not, append it.