Export to Excel using Python

Asked 1 years ago, Updated 1 years ago, 239 views

I would like to export the data from the file manufacturer in csv, save it, and then create a time schedule in Excel in Python based on that data.Is it possible?If possible, would anyone advise me on Python programming?

python

2022-11-06 02:14

1 Answers

Yes, Python is a general programming language, so there's nothing you can do about it.However, the Excel format is especially complicated, so it is common to use a library.

  • CSV: You can use the standard library csv module.
  • Excel format: There is a library called openpyxl.This is not a standard library, so install it with pip and so on.


2022-11-06 09:50

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.