Suppose we have a function abc
where it returns four dicts after some processing as shown. For future if I will only need one tuple from the four, how to get it?
Eg., I only want dict d_two
which function abc returns or content of each of the four returns?
def abc():
d_one = dict()
d_two = dict()
d_three = dict()
d_four = dict()
.
.
.
.
return (d_one, d_two, d_three, d_four)