31. What will be the output of the following Python code?
>>> import collections
>>> a=collections.OrderedDict((str(x),x) for x in range(3))
>>> a
>>> import collections
>>> a=collections.OrderedDict((str(x),x) for x in range(3))
>>> a