python excelを読む

469 ワード

1.ダウンロードインストールxlrd
クリックしてリンクを開く
2. Demo
#!/usr/bin/python

import xlrd

data = xlrd.open_workbook("test.xlsx")

table = data.sheets()[0]

print table.nrows, table.ncols

for i in range(table.nrows):
        for j in range(table.ncols):
                value = table.cell(i, j).value
                if value:
                        print i, j, value
                else:
                        break