This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import xlwt | |
from xlwt import Workbook | |
# Workbook is created | |
wb = Workbook() | |
# add_sheet is used to create sheet. | |
sheet1 = wb.add_sheet('first sheet') | |
#sheet1.write(row, colum, content) |