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

34.
What will be the output of the following Python code snippet?
d = {"john":40, "peter":45}
print(list(d.keys()))

38.
What will be the output of the following Python code snippet?
test = {1:'A', 2:'B', 3:'C'}
del test[1]
test[1] = 'D'
del test[2]
print(len(test))

39.
What will be the output of the following Python code?
>>> a={1:"A",2:"B",3:"C"}
>>> a.items()

40.
Which of the statements about dictionary values if false?