dict(list(tuple(A, B)) items) - construct a dictionary from a list of key/value pairs
dict(list(tuple(A, B)) items) takes a list item as argument, which is a list
of pairs of keys and values. It inserts all those items
into the new dict and returns it. @A items