Colleagues, I have the following excel file. But, when I compile the program again, my data is overwritten. I'd like to put each results of the next compilations in a row. I've seen some examples with append, but I can not make it work. Could someone help me, please? !!
writer = pd.ExcelWriter('output.xlsx')
df = pd.DataFrame({'Function':[Output],'Circuit':[gates],'Cost':[cost]},)
df.to_excel(writer,'Sheet1')
writer.save()