我想比较每行给定列的值与另一个值,如果值相等,我想将整行复制到另一个电子表格.
我怎么能用Python做到这一点?
谢谢!
解决方法:
请参阅python excel库xlrd(用于excel阅读)/ xlwt(用于excel写入)
http://www.python-excel.org/
例如(阅读)(from this):
import xlrd
fname = "sample.xls"
bk = xlrd.open_workbook(fname)
shxrange = range(bk.nsheets)
try:
sh = bk.sheet_by_name("Sheet1")
except:
print "no sheet in %s named Sheet1" % fname
return None
nrows = sh.nrows
ncols = sh.ncols
print "nrows %d, ncols %d" % (nrows,ncols)
cell_value = sh.cell_value(1,1)
print cell_value
row_list = []
for i in range(1,nrows):
row_data = sh.row_values(i)
row_list.append(row_data)
如果您使用Excel 2007进行处理,请使用openpyxl:http://packages.python.org/openpyxl/