I want to get particular cell values from excelsheet in my python script. I came across xlrd, xlwt, xlutils modules for reading/writin
xlrd
xlwt
xlutils
The code below will help you in solving the problem:
worksheet = workbook.sheet_by_name('Sheet1') num_rows = worksheet.nrows - 1 curr_row = 0 while curr_row < num_rows: curr_row += 1 row = worksheet.row(curr_row) print row[0].value