1.

What is the output of the following piece of code? 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» D. An exception is thrown


Discussion

No Comment Found