Vidyalelo
Python · Q149

Functions in Python

Programming · Python · question 149

Q149

What will be the output of the following Python code? def find(a, **b): print(type(b)) find('letters',A='1',B='2')

A.
String
B.
Tuple
C.
Dictionary
Answer
D.
An exception is thrown

Answer: Option C

Solution

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