I am trying to create a list of dataframes.
I print my dataframe normally and it works fine.
print(df)
however if I create a list to store my df, it does not seem to work coz it prints 'None' from listOfDataframe.
# Create list of data frame using list
listOfDataframe = []
listOfDataframe = listOfDataframe.append(df)
print(listOfDataframe)
whats happening and How do I fix it?