Say I have a function, denoted by Show, that runs by accessing points in a list. Is it then possible to assign each outcome from the function to a variable? Is it possible for the variable to be defined by dfi so the outputs would be df1, df2, df3, ect... for a long as defined by count?
count = 5
for i in range(0, count):
d = Show(list[i])