What will be the output of the following Python code?
def find(a, **b):
print(type(b))
find('letters',A='1',B='2')
def find(a, **b):
print(type(b))
find('letters',A='1',B='2')A. String
B. Tuple
C. Dictionary
D. An exception is thrown
Answer: Option C

Join The Discussion