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

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

.htaccess - ERR_TOO_MANY_REDIRECTS htaccess -