Created
October 30, 2017 19:23
-
-
Save kokovych/80f8af803bbcb9a42bebf2de51ad3cce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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