python怎样比较两个文件的内容并返回相同的内容和下标

问题如题所示,在python中怎样查看并比较两个文件的内容并返回相同的内容和下标,首先需要说明,我的文件是按行存储的,形式如下:
在这里插入图片描述
具体的代码如下:

import os

def read_file(filename1,filename2):
    path = "/home/zhuhualong/pycharm_proj/pycharm_proj/xbs_symptom_structure/result"
    filename1_path = os.path.join(path,filename1)
    filename2_path = os.path.join(path,filename2)
    same_result = []
    same_number = []
    idx1 = 1
    with open(filename1_path,'r+',encoding='utf-8') as file1,open(filename2_path,'r+',encoding='utf-8') as file2:
        f1 = file1.readlines()
        f2 = file2.readlines()
        for text1 in f1:
                idx2 = 1
                for text2 in f2:
                    if idx1 == idx2 and text1 == text2:
                        same_number.append(int(idx1))
                        same_result.append(text1)
                        idx2 += 1
                    else:
                        idx2 += 1
                idx1 += 1
        print(same_number)
        print(same_result)


read_file("xbs_struct_0724_3_2w_0","xbs_struct_0724_3_4w_0")

其中readfile()函数的参数是需要比较的文件名称,path是文件所在的文件夹路径,由于我这里的两个文件是在同一文件夹下,所以使用的是同一个path。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值