I can iterate rows of sheet like:
for row_id in sheet.rows:
sheet.row(row_id)
But how to get content of row (xlwt.Row.Row
type)?
I can iterate rows of sheet like:
for row_id in sheet.rows:
sheet.row(row_id)
But how to get content of row (xlwt.Row.Row
type)?