2つのテキストファイルを読み取り、それらのテキストの違いを出力するプログラムをPythonで記述しようとしています.2つのファイルは、挿入されたいくつかのコメントのために異なる行番号を除いて類似しています.difflibを使用してみました.モジュールですが、エラーが発生しています。
import difflib
from difflib import *
temp3=[]
temp4=[]
with open ("seqdetect",'r') as f:
with open ("seqdetect_2",'r') as g:
for item in f:
temp1 =item.split()
temp3.append(temp1)
for items in g:
temp2 =items.split()
temp4.append(temp2)
d = difflib.Differ()
diff = d.compare(temp3, temp4)
print ('\n'.join(diff))
代替案を教えてください。よろしく、 マヤンク