my problem is that I have two function and one of it's return value is two dictionaries in the following way:
def fnct1():
return dict1, dict2
so it's returning into my other function which return value is the two dictionaries from the previous function and also a new dictionary, so something like this
def fnct2():
return dict3, fnct(1)
the problem with this is that is has the following result:
({dict3},({dict1},{dict2})
but I want it to look the following way:
({dict3},{dict1},{dict2})