使用python比较文件内容

时间:2011-06-04 07:17:08

标签: python

  

可能重复:
  comparing contents of two files using python

我有一个文件名globalexclusionlist.txt,我的内容就像

      #include <stdio.h>
      #include <iostream>
      import subprocess
      import java.sql.*;import java.io.*;
      ruby library
      show tables; 

      ......and many more

我有另一个名为libraries.txt的文件,该文件的内容是

     import mymodule
     import empmodule,os
     import subprocess
     import java.sql.*
     #include <stdio.h>
     #include <iostream>
     import datetime,logging,re
     import java.io.*;
     .......and many more

我的问题是,从python如何知道exludelist.txt中的内容也存在于libraries.txt中,因为这里混淆了..

     f = open('globalexclusionlist.txt', 'r')
     f.read()

     f1= open('libraries.txt', 'r')
     f1.read()

    if (//Is contents of f1 present in f2):
         print libraries found
    else:
         print not found

    f.close()
    f1.close() 

1 个答案:

答案 0 :(得分:0)

查看difflib