xlsxwriter - Is there anyway print a worksheet respecting the tabular data in it in python? -
let's created workbook in python this:
import xlsxwriter workbook = xlsxwriter.workbook(path) worksheet = workbook.add_worksheet()
then populated , saved worksheet. in future need print worksheet , ask user save workbook. there anyway print console worksheet
respecting tabular data in it?
Comments
Post a Comment