How can I export several dataframes (A,B,C, etc) to one excel file with a few lines?
Excel_file = pd.ExcelWriter('Excel_file.xlsx', engine='xlsxwriter')
A.to_excel(A,'A')
B.to_excel(B,'B')
C.to_excel(C,'C')
.
.
.
thank you
df.to_excelat each iteration