‘operator’ module
Exports a set of functions corresponding to the intrinsic operators of Python. For example, operator.add(x, y) is equivalent to the expression x+y.
dict_name.items()
The method items() returns a list of dict’s (key, value) tuple pairs
dict_name.values()
The method items() returns a tuple of dict’s values