71.
What will be the output of the following Python code snippet?
a = {}
a[1] = 1
a['1'] = 2
a[1]=a[1]+1
count = 0
for i in a:
    count += a[i]
print(count)

73.
Suppose d = {"john":40, "peter":45}, what happens when we try to retrieve a value using the expression d["susan"]?

77.
What will be the output of the following Python code?
>>> a={"a":1,"b":2,"c":3}
>>> b=dict(zip(a.values(),a.keys()))
>>> b

78.
Which of the following isn't true about dictionary keys?

79.
What will be the output of the following Python code?
>>> a={i: 'A' + str(i) for i in range(5)}
>>> a