我有2张纸,上面有一些数据(每张18k行),需要检查target.xlsx文件中是否存在source.xlsx的值。源文件中的行应该是唯一的。如果源文件中的单元格存在于目标文件中(特定列中),则目标文件的下一列中需要填充源文件中某一列中的值。这非常棘手,因此示例如下:
target.xlsx
Tensor x
source.xls
<table><tbody><tr><th>Data</th><th>price</th><th> </th></tr><tr><td>1234grt </td><td> </td><td> </td></tr><tr><td>7686tyug </td><td> </td><td> </td></tr><tr><td>9797tyu </td><td> </td><td> </td></tr><tr><td>9866yyy </td><td> </td><td> </td></tr><tr><td>98845r </td><td> </td><td> </td></tr><tr><td>4567yut </td><td> </td><td> </td></tr><tr><td>1234grt</td><td> </td><td> </td></tr><tr><td>98845r </td><td> </td><td> </td></tr></tbody></table>
<table><tbody><tr><th>Data</th><th>price</th><th> </th></tr><tr><td>98845r </td><td>$50</td><td> </td></tr><tr><td>7686tyug </td><td>$67</td><td> </td></tr><tr><td>9797tyu </td><td>$56</td><td> </td></tr><tr><td>4567yut </td><td>$67</td><td> </td></tr><tr><td>9866yyy </td><td>$76</td><td> </td></tr><tr><td>98845r </td><td>$56</td><td> </td></tr><tr><td>1234grt</td><td>$34</td><td> </td></tr></tbody></table>
target_values-包含目标工作表中第1列的值
上面的代码有效,但是非常繁琐,我认为有更好的方法可以做到。这些文件包含超过18,000行,因此比较数据可能需要一段时间。棘手的部分是,我需要知道源文件中我的单元格在目标文件的哪一行中填充相应的值。我正在使用openpyxl,但如果更简单,我可以使用熊猫。
Thx
答案 0 :(得分:0)
据我对您的问题的理解,似乎目标文件中的行未按与源文件相同的特定顺序排列。
for i in range(1, souce_sheet_max_rows):
for j in range(1, target_sheet_max_rows):
if target_wb[temp_sheet_name].cell(row=j, column=1).value == source_wb[temp_sheet_name].cell(row=i, column=1).value:
target_wb[temp_sheet_name].cell(row=j, column=2).value == source_wb[temp_sheet_name].cell(row=i, column=2).value
break
target_wb.save(temp_sheet_name)
答案 1 :(得分:0)
问题:检查target.xlsx文件中是否存在source.xlsx中的值。
按以下示例实施:
文档:OpenPyXl - accessing-many-cells
Python - Mapping Types — dict,Python - object.__init__
class SourceSheet:
def __init__(self, ws):
self.ws = ws
def __iter__(self):
"""
Implement iterRows or iterRange
:return: yield a tuple (value_to_search, value_to_fill)
"""
# Example iterRange
for row in range(1, self.ws.max_rows + 1):
yield (self.ws.cell(row=row, column=1).value, self.ws.cell(row=row, column=2).value)
class TargetSheet:
def __init__(self, ws):
self.ws = ws
"""
Create a 'dict' from all Values in Column A
This allows Random Access the Cell Value to get the Cell Row Index
Dict.key == Cell Value
Dict.value = Cell Row Index
_columnA = {} # {cell.value:cell.row}
"""
self._columnA = dict(((c.value, c.row) for c in ws['A']))
def find(self, value):
"""
Implement either linear Search using iterRows over one Column or
search in dict to find 'value'
:param value: The value to find
:return: The Cell, to write the 'value_to_fill'
"""
# Example using dict
if value in self._columnA:
return self.ws.cell(row=self._columnA[value], column=2)
sourceSheet = SourceSheet(ws1)
targetSheet = TargetSheet(ws2)
for value_to_search, value_to_fill in sourceSheet:
print("SourceSheet:{}".format((value_to_search, value_to_fill)))
targetCell = targetSheet.find(value_to_search)
if targetCell:
print("Match: Write value '{}' to TargetSheet:'{}'".format(value_to_fill, targetCell))
targetCell.value = value_to_fill
else:
print("Value '{}' not fount in TargetSheet!".format(value_to_search))
输出:
SourceSheet:('cell.A1.value', 'cell.B1.value') Match: Write value 'cell.B1.value' to TargetSheet:'Cell.B1:' SourceSheet:('cell.A2.value', 'cell.B2.value') Match: Write value 'cell.B2.value' to TargetSheet:'Cell.B2:' SourceSheet:('cell.A3.value', 'cell.B3.value') Match: Write value 'cell.B3.value' to TargetSheet:'Cell.B3:'
使用Python测试:3.5