Q. The output of this Python code would be
Code:
def find(x, **y): print(type(y)) find(‘letters’,X=’1′,Y=’2′)
β
Correct Answer: (A)
Dictionary
def find(x, **y): print(type(y)) find(‘letters’,X=’1′,Y=’2′)
You must be Logged in to update hint/solution