okeoke
okeoke

Reputation: 93

Python: output variables onto existing excel sheet

I was wondering how to output using Python variables onto an existing excel sheet.

Given the excel column

[A] [B] [C] [D] [E] [F] [G] [H] [I] [J]

Note:

For excel input, I am using xlrd, but I was wondering how do I output these variables onto the same/existing excel file? Which library do I use?

Upvotes: 1

Views: 681

Answers (1)

Rahul Raut
Rahul Raut

Reputation: 1508

There are python packages available to work with Excel files that will run on any Python platform and that do not require either Windows or Excel to be used. They are fast, reliable and open source like openpyxl, xlsxwriter.

Also this may help to you to update existing excel file.

Upvotes: 4

Related Questions