Skip to content

Commit 38c82d0

Browse files
Update write_excel_file.py
In the xlwt part of the code, the add_sheet() method is used to create a new sheet, but it is recommended to use the Workbook() constructor instead. Also, the add_sheet() method is not available in newer versions of xlwt, so this code may not work with those versions. In the openpyxl part of the code, there are two issues: The cell() method is being called twice for cell (1,1), and the first value is being overwritten. It looks like the intention was to write to cell (1,2) in the second cell() call, but it is mistakenly also using (1,1). When creating a new sheet with create_sheet(), it is recommended to specify the index parameter to avoid overwriting any existing sheets. Here is the updated code with these issues fixed:
1 parent 263bd95 commit 38c82d0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

write_excel_file.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
from xlwt import Workbook
1+
import xlwt
22
import openpyxl
33

44
# Workbook is created
5-
wb = Workbook()
5+
xlwt_wb = xlwt.Workbook()
66

77
# add_sheet is used to create sheet.
8-
sheet1 = wb.add_sheet("Sheet 1")
8+
sheet1 = xlwt_wb.add_sheet("Sheet 1")
99

1010
sheet1.write(1, 0, "ISBT DEHRADUN")
1111
sheet1.write(2, 0, "SHASTRADHARA")
@@ -18,23 +18,23 @@
1818
sheet1.write(0, 4, "RAJPUR ROAD")
1919
sheet1.write(0, 5, "CLOCK TOWER")
2020

21-
wb.save("xlwt example.xls")
21+
xlwt_wb.save("xlwt example.xls")
2222

2323
# Workbook is created
2424
openpyxl_wb = openpyxl.Workbook()
2525

2626
# create_sheet is used to create sheet.
27-
sheet1 = openpyxl_wb.create_sheet("Sheet 1")
27+
sheet1 = openpyxl_wb.create_sheet("Sheet 1", index=0)
2828

2929
sheet1.cell(1, 1, "ISBT DEHRADUN")
3030
sheet1.cell(2, 1, "SHASTRADHARA")
3131
sheet1.cell(3, 1, "CLEMEN TOWN")
3232
sheet1.cell(4, 1, "RAJPUR ROAD")
3333
sheet1.cell(5, 1, "CLOCK TOWER")
34-
sheet1.cell(1, 1, "ISBT DEHRADUN")
35-
sheet1.cell(1, 2, "SHASTRADHARA")
36-
sheet1.cell(1, 3, "CLEMEN TOWN")
37-
sheet1.cell(1, 4, "RAJPUR ROAD")
38-
sheet1.cell(1, 5, "CLOCK TOWER")
34+
sheet1.cell(1, 2, "ISBT DEHRADUN")
35+
sheet1.cell(1, 3, "SHASTRADHARA")
36+
sheet1.cell(1, 4, "CLEMEN TOWN")
37+
sheet1.cell(1, 5, "RAJPUR ROAD")
38+
sheet1.cell(1, 6, "CLOCK TOWER")
3939

4040
openpyxl_wb.save("openpyxl example.xlsx")

0 commit comments

Comments
 (0)