As i'm trying to append my list values into one excel file as row wise i tried but it appending as column wise.
my INPUT is:
[[1 1 1 'Chair' 1 50 'hosur' Timestamp('2017-01-01 00:00:00')]
[2 1 1 'Table' 1 50 'hosur' Timestamp('2017-01-02 00:00:00')]]
i want to append it into one excel file as ROW wise not COLUMN wise my tried code is
import pandas as pd
df = pd.DataFrame.from_dict({'row1':[[1 1 1 'Chair' 1 50 'hosur' Timestamp('2017-01-01 00:00:00')]
,'row2':[2 1 1 'Table' 1 50 'hosur' Timestamp('2017-01-02 00:00:00')]]})
df.to_excel('test.xlsx', header=True, index=False)