We can use dictionaries and lists together to make lists of dictionaries, lists of lists, dictionaries of lists, or any other combination.
Although this is a great thing to do, you should never use a list as a key of your dictionary. Lists are mutable (this means you can add or remove elements). So, you would not be able to consistently refer back to your mapped values later (as the key is constantly changing). Instead, please use tuples as they are immutable