Sail E0 Webinar
Question
What is the output of the following piece of code?a={1:"A",2:"B",3:"C"}print(a.get(1,4))
Options:
A .  1
B .  A
C .  4
D .  Invalid syntax for get method
Answer: Option B


The get() method returns the value of the key if the key is present in the dictionary and the default value(second parameter) if the key isn't present in the dictionary.



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers