Vidyalelo
Python · Q55

MCQs for Python Dictionaries: Exam

Programming · Python · question 55

Q55

What will be the output of the following Python code? a=1:5,2:3,3:4 a.pop(3) print(a)

A.
{1: 5}
B.
{1: 5, 2: 3}
Answer
C.
Error, syntax error for pop() method
D.
{1: 5, 3: 4}

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board