I have five DataFrames, df1, df2, df3, df4, df5.
I can save each one individually with:
df1.to_csv('~/Desktop/df1.tsv', index=False, header=False, sep='\t')
df2.to_csv('~/Desktop/df2.tsv', index=False, header=False, sep='\t')
...
Can I do this in a loop where the file path ends with the name of the variable that holds the Dataframe?