Pandas Excel Export - Columns Out of Order

2019-06-06 17:06发布

问题:

I'm using Output.to_excel('output.xls', index=True, header = False)

However when I open the excel sheet the columns or out of order.

When I use Output.to_csv('output.csv', index=True, header = False), the columns are in the appropraite order.

Any thoughts or suggestions?

Thanks