MCQs > IT & Programming > Python > Output of the following Python code? c = {'A':1, 'B':2} print(c.get('A')) print(c.get('C')) print(c.get('C'.'0'))

Python MCQs

What will be the correct output of the following Python code?

c = {"A”:1, "B":2}

print(c.get("A"))

print(c.get("C"))

print(c.get("C"."0"))