okay sorry :) will keep in mind On Thu, Jun 4, 2009 at 3:20 PM, Venkatraman S <venka...@gmail.com> wrote:
> On Thu, Jun 4, 2009 at 3:07 PM, Ruchir Shukla <ruchiryshu...@gmail.com>wrote: > >> import difflib >> f=open('text1.txt','rb') >> text1=f.read() >> f.close() >> f=open('text2.txt','rb') >> text2=f.read() >> f.close() >> #print text1 >> #print text2 >> text1_lines = text1.splitlines(1) >> text2_lines = text2.splitlines(1) >> d = difflib.HtmlDiff() >> >> diff = d.make_file(text1_lines, text2_lines) >> print diff >> >> >> To find difference this program and *"difflib"* library can help you >> HtmlDiff will return the HTML format of the comparison. >> >> if u are looking for output in plain text format then following can help >> you. >> >> import difflib >> d = difflib.Differ() >> diff = d.compare(text1_lines, text2_lines) >> > > > Do NOT spoonfeed! *sigh* > > -V- > > _______________________________________________ > BangPypers mailing list > BangPypers@python.org > http://mail.python.org/mailman/listinfo/bangpypers > > -- ------------------------------ Ruchir Shukla
_______________________________________________ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers