I am trying to create a book with python, and I need to check the values โโof different cells to fill it, but I have problems. I use xlrd and xlwt to create and edit an excel file.
I made a small example of my problem, and I do not understand why it does not work.
import xlwt import xlrd wb = xlwt.Workbook() ws = wb.add_sheet('Test') ws.write(0,0,"ah") cell = ws.cell(0,0)
I took it for granted that xlrd and xlwt have common classes that can interact with each other, but that doesn't seem to be the case. How to get cell value for open Worksheet object?
source share