I would like to create a csv file from a list of pandas dataframes. My data maintains all of the same column names besides for 1 column which is swapped each time. The following is what my list looks like based on the index of the list:
index 0:
height weight age isFunny
4 2 21 0
index 1:
height weight age isCool
10 30 81 34
index 2:
height weight age isDumb
4 2 34 10
index 3:
height weight age isTalker
4 12 25 3
I thought that the best way to save this data was in a list of pandas dataframes but if there is a better alternative, then please suggest any.