So I want to write a function that looks something like this:
def return_all_tables(parameter):
a_table = a(parameter)
b_table = b(parameter)
c_table = c(parameter)
...
Here, a, b and c are all different functions returning the dataframes a_table, b_table and c_table respectively.
What I'm not sure now is how to write the return statement to make it return the content of every dataframe.
return (a_table, b_table, c_table)?