Python实现在一个文件中查找另一个文件中存在的指定元素

Posted 杨鑫newlfe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python实现在一个文件中查找另一个文件中存在的指定元素相关的知识,希望对你有一定的参考价值。

有三个文档,文件A、文件B、文件C,A中有一组元素,我们要在文件B中找出包含文件A中元素的行,将文件写入C中。其中固定要找的元素在B中的F列,所以这里我们限定

if sheet1.cell(i + 1, 6).value in list_result:

整体代码如下:

# -*- coding:utf-8 -*-
__author__ = \'yangxin_ryan\'
import openpyxl
"""
Solution
"""


class ExcelFunction(object):

    def cell_handle(self, input_file1, input_file2, output_file):
        # 读取查找元素
        wb = openpyxl.load_workbook(input_file1, data_only=True)
        sheet = wb.worksheets[0]
        list_result = list()
        col_len = sheet.max_column
        row_len = sheet.max_row
        for i in range(row_len):
            for j in range(col_len):
                list_result.append(sheet.cell(i + 1, j + 1).value)

        # 读取查找集合
        wb1 = openpyxl.load_workbook(input_file2, data_only=True)
        sheet1 = wb1.worksheets[0]
        l

以上是关于Python实现在一个文件中查找另一个文件中存在的指定元素的主要内容,如果未能解决你的问题,请参考以下文章

指示 Python 在另一个文件夹中查找模块

在一个文件中查找不在另一个文件中的行的快速方法?

使用python:查找文件并复制到另一个目录

使用python实现查找文本文件中的指定字符串

使用 Python 在 JSON 中查找值

python如何查找两个文本文件之间的所有单词匹配