我需要从目录中存在的 100 个 excel 工作簿中读取特定的单元格值,并将该数据写入单独的 excel 表中的列。这是我所做的,它产生了错误:
#!/usr/bin/env python
import os
import xlwt
import xlrd
index=0
workbook = xlwt.Workbook()
Testsheet = workbook.add_sheet('test')
print "Enter the row you want"
row=input()
print "Enter the column you want"
col=input()
for file in os.listdir('.'):
wb = xlrd.open_workbook(file)
wb.sheet_names()
sh = wb.sheet_by_name(u'Sheet1')
data = sh.cell(row,col).value
Testsheet.write(0, index, data)
index=index+1
workbook.save('Test.xls')
任何人都可以帮助成功地做到这一点吗?