I have a file name exclusionlist.txt and i have contents in it like
import os
import re
import subprocess
......and many more
I have another file named libraries.txt and the contents of this file are
import mymodule
import empmodule,os
import subprocess
import datetime,logging,re
.......and many more
My question is that from python how to know that the contents which are in exclusionlist.txt is also present in libraries.txt since here it is jumbled up..
f = open('exclusionlist.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()