add sheet to existing workbook openpyxl code example

Example 1: add sheet to existing workbook openpyxl

from openpyxl.workbook import Workbook

wb = Workbook()

ws1 = wb.create_sheet("Sheet1")
ws1.title = "Title1"
ws2 = wb.create_sheet("Sheet2")
ws2.title = "Title2"

wb.save(filename="filename.xlsx")

Example 2: how to create multiple sheets in excel using python in openpyxml

1from openpyxl.workbook import Workbook
 2
 3wb = Workbook()
 4
 5ws1 = wb.create_sheet("Sheet_A")
 6ws1.title = "Title_A"
 7
 8ws2 = wb.create_sheet("Sheet_B", 0)
 9ws2.title = "Title_B"
10
11wb.save(filename = 'sample_book.xlsx')