Dict¶
A Python dict
contains a key to value mapping aka. hashmap []. Dicts are
mutable objects. That means their content can be changed in place.
Keys and values can be arbitrary values [1].
output = {1: 2, "Hello": "World"}
type(output)
print(output)
print(output["Hello"])
print(output[1])