python - XLWT: How to access previously written cells? -
i have created excel workbook using 'xlwt'.in program, given below, write few cells values. now, how access cells?
""" create 'data_table.xls' excel workbook """ book = xlwt.workbook() sheet1 = book.add_sheet("data_table") """ define first row in 'data_table.xls'""" sheet1.write(0,0, "variable name") sheet1.write(0,1, "global static variable?")
how access data in cell (0, 0) or (0, 1)?
you have open file e.g. xlrd-library. think way data of written file.
greetings, frame
Comments
Post a Comment