Skip to content

Instantly share code, notes, and snippets.

@kokovych
Created October 30, 2017 19:23
Show Gist options
  • Save kokovych/80f8af803bbcb9a42bebf2de51ad3cce to your computer and use it in GitHub Desktop.
Save kokovych/80f8af803bbcb9a42bebf2de51ad3cce to your computer and use it in GitHub Desktop.
import xlrd
rb = xlrd.open_workbook('SchoolOnboardingTemplate111.xlsx')
print "open file schools.xls -- success "
sheet = rb.sheet_by_index(0)
worksheet = rb.sheet_by_name('School Information')
cell = worksheet.cell(rowx=2, colx=2)
print cell
print type(cell)
cell = worksheet.cell(rowx=10, colx=10)
print cell
print type(cell)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment