编程语言
首页 > 编程语言> > python – 比较两个文件

python – 比较两个文件

作者:互联网

我有这种格式的两个文件

file1= filename val1 val2
file2= filename val3 val4

我想比较文件名,如果他们有相同的名字,我想得到第三个文件,如下 –

filename val1 val2 val3 val4

我从file1中选择一个文件名并浏览file2以查看是否可以获取它.然后寻找指针返回文件2的顶部以获取下一个文件名..是否有更有效的方法呢?

解决方法:

听起来你正在寻找的是标准的join命令(不是Python,而是标准的Unix shell实用程序).这是一个系统手册页的剪辑(似乎比Linux man page for join更详细):

        join phonedir names

        If the phonedir file contains the following names:

        Adams A.        555-6235
        Dickerson B.    555-1842
        Erwin G.        555-1234
        Jackson J.      555-0256
        Lewis B.        555-3237
        Norwood M.      555-5341
        Smartt D.       555-1540
        Wright M.       555-1234
        Xandy G.        555-5015

        and the names file contains these names and department numbers:

        Erwin           Dept. 389
        Frost           Dept. 217
        Nicholson       Dept. 311
        Norwood         Dept. 454
        Wright          Dept. 520
        Xandy           Dept. 999

        the join command displays:

        Erwin G.        555-1234        Dept. 389
        Norwood M.      555-5341        Dept. 454
        Wright M.       555-1234        Dept. 520
        Xandy G.        555-5015        Dept. 999

标签:python,text-processing
来源: https://codeday.me/bug/20190827/1735952.html