Let's say that we create a new, empty Python dictionary: >>> d = {} How much memory does this new, empty dict consume? We can find out with "sys.getsizeof": >>> import sys>>> sys.getsizeof(d)240 In other