Python Openpyxl Create Excel File with Multiple Sheets

By Hardik Savani October 30, 2023 Category : Python

Hi Developer,

Now, let's see an article of python openpyxl create excel file with multiple sheets. This post will give you a simple example of openpyxl create excel file with multiple sheets. We will use openpyxl write to multiple excel sheets. you can understand a concept of python openpyxl create excel file with multiple sheets. So, let us see in detail an example.

Openpyxl is a Python library that is used to read from an xlsx file or write to an Excel file. Openpyxl is used to analyze data, data copying, data mining etc. We can work with Workbook using Python Openpyxl.

In this example, we will create excel file with SheetOne and SheetTwo multiple sheet. so let's see the below examples.

You can use these examples with python3 (Python 3) version.

If you haven't install openpyxl in your system then you can install using the below command:

pip install openpyxl

Example: Multiple Sheet

main.py

import openpyxl
  
# Define variable to load the dataframe
wb = openpyxl.Workbook()
   
# Create SheetOne with Data
sheetOne = wb.create_sheet("SheetOne")
  
data =[('ID', 'Name', 'Email'),
       (1, 'Hardik Savani', 'hardik@gmail.com'),
       (2, 'Vimal Kashiyani', 'vimal@gmail.com'),
       (3, 'Harshad Pathak', 'harshad@gmail.com')]
  
for item in data :
     sheetOne.append(item)
  
# Create SheetTwo with Data
sheetTwo = wb.create_sheet("SheetTwo")
  
data =[('ID', 'Name'),
       (1, 'Hardik'),
       (2, 'Vimal'),
       (3, 'Harshad')]
  
for item in data :
     sheetTwo.append(item)
   
# Remove default Sheet
wb.remove(wb['Sheet'])
  
# Iterate the loop to read the cell values
wb.save("demo.xlsx")

Output:

Now, It will generated demo.xlsx file in your root path with the below content.

demo.xlsx

I hope it can help you...

Tags :
Shares