Q24
What is the output of the following code:my_dict = 'a': 1, 'b': 2, 'c': 3print(my_dict.get('d', 0))
A.
0
AnswerB.
'd'
C.
3
D.
'a'
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board