Vidyalelo
Python · Q41

Formatting and Decorators

Programming · Python · question 41

Q41

What will be the output of the following Python code? D=dict(p='Exam', q='Veda') 'pq'.format(**D)

A.
Error
B.
ExamVeda
Answer
C.
Exam Veda
D.
{'Exam', 'Veda'}

Answer: Option B

Solution

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