Skip to content

Instantly share code, notes, and snippets.

@enjoyksoo
Created August 31, 2015 11:06
Show Gist options
  • Save enjoyksoo/0aa3b8dc737df8d5124d to your computer and use it in GitHub Desktop.
Save enjoyksoo/0aa3b8dc737df8d5124d to your computer and use it in GitHub Desktop.
python_xlrd_1
__author__ = 'Administrator'
import xlrd
wb = xlrd.open_workbook("C:\\test.xlsx")
ws = wb.sheet_by_index(0)
ncol = ws.ncols
nlow = ws.nrows
print "-------- Sheet1 --------"
print "Number of col: " + str(ncol)
print "Number of low: " + str(nlow)
ws = wb.sheet_by_index(1)
ncol = ws.ncols
nlow = ws.nrows
print "-------- Sheet2 --------"
print "Number of col: " + str(ncol)
print "Number of low: " + str(nlow)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment