Pythonでexcelのデータを読み込む
pythonでexcelを処理するにはサードパーティモジュールxlrdを使用する必要がありますので、windows私のインストール方法はcmdのコマンドです:E:ANZHUANNGPythonScripts>easy_install xlrd(パスはpythonのscriptsで、easy_installをインストールする必要があります)
#coding=utf-8
import xlrd
def print_xls(path):
data=xlrd.open_workbook(path) # excel
table=data.sheets()[1] # excel sheet
nrows=table.nrows #
books=[]
for i in range(nrows):
ss=table.row_values(i) # ,
#print ss
for i in range(len(ss)):
print ss[i] #
print '+++++++++++++++++++'
if __name__=='__main__':
print_xls('D:\\ \\431547909921.xls')