Appending a value to an empty dictionary adds a key-value pair to the dictionary.
Solution for How to append a value to an empty dictionary in Python : You can use dictionary indexing to append a value to an empty dictionary Use dict[key] = value to append key to the empty dictionary dict with value as its value.