This short guide describes how to create Excel file in Python by first providing information about environment configuration and then the step-by-step procedure to create, fill and save an Excel file from scratch. It will provide guidance on how by using Python create Excel file and access a particular sheet from the newly created Excel file. It also explains how to access the collection of cells to fill data in a particular cell and finally save this file in XLS or XLSX file format.
Steps to Create Excel File in Python
- Configure the project to install Aspose.Cells for Python via Java
- Instantiate a Workbook class object to create an empty Excel file
- Access the first Worksheet of the newly created Excel file
- Access the cells collection provided by default in each Worksheet
- Iterate through the cells collection and fill data in a few cells
- Save the Excel file on disk after filling in sample data
These steps describe in detail how using Python create Excel first by providing a link to the configuration and then initializing a Workbook class object. Each workbook contains a worksheet by default and each worksheet contains a collection of cells that can be used to access the individual cell to read/write data. In the end, the Excel file is saved on disk using the Save function in the workbook class object.
Code to Create an Excel File in Python
This code imports jpype and aspose.cells, starts JVM, and then creates a new Excel file using the Workbook class object from the aspose.cells library. The collection of worksheets in a workbook contains one worksheet by default. Once the first worksheet is accessed, target cells are filled using the cells collection available in each worksheet. In the end, the workbook is saved on disk, and JVM is shut down.
To create Excel file Python language is used in this tutorial. If you want to learn other features in Python like converting Excel to PDF, refer to the article on how to convert Excel to PDF using Python.