0 votes
in Python by
The output of this Python code would be:

select the correct answer from below options

def find(x, **y):

print(type(y))

find(‘letters’,X=’1′,Y=’2′)

1) Dictionary

2) An exception is thrown

3) String

4) Tuple

1 Answer

0 votes
by

1) Dictionary

Related questions

0 votes
asked Aug 22, 2022 in Python by Robindeniel
0 votes
asked Aug 22, 2022 in Python by Robindeniel
...