を使用して2つのExcelファイルの比較:は、次のように私は2つの<code>xlsx</code>のファイルを持っているのPython
value1 value2 value3
0.456 3.456 0.4325436
6.24654 0.235435 6.376546
4.26545 4.264543 7.2564523
と
value1 value2 value3
0.456 3.456 0.4325436
6.24654 0.23546 6.376546
4.26545 4.264543 7.2564523
を私はすべてのセルを比較する必要があり、もしfile2
print
からfile1 !=
の細胞からの細胞それ。
import xlrd
rb = xlrd.open_workbook('file1.xlsx')
rb1 = xlrd.open_workbook('file2.xlsx')
sheet = rb.sheet_by_index(0)
for rownum in range(sheet.nrows):
row = sheet.row_values(rownum)
for c_el in row:
print c_el
どのように私はfile1
とfile2
の比較セルを追加することができますか?
[Excelセルの値の比較]の可能な複製(http://stackoverflow.com/questions/33486884/comparing-values-in-excel-cells) –