I have some data that I'd like to save in an excel file. How does one do this in python?
|
feedback
|
|
There's a great python module called XLWT. I'd recommend using that... it writes native Excel files instead of CSVs. Supports formulas, etc too. Documentation (borrowed from Mark) | ||||
|
feedback
|
|
I'll answer a slightly different question: "How can I write data so that Excel can read it?" Use the
| |||||||
feedback
|
|
If you want a BIFF8 XLS file, I would use the excellent xlwt. | |||
|
feedback
|
|
if it's running on windows, try creating an instance of Use Excel Help for the object reference. This way you can even format the data, write formulas, etc. | |||||||||||
feedback
|