I\'m aiming to write a script that will compare each line within a file, and based upon this comparison, create a new file containing the lines of text which aren\'t in the
with open("H:/Ast/Hpa.java", encoding="utf8") as f:
with open("G:/Soft_install/Hpa.java", encoding="utf8") as fe:
for line in f:
for linefe in fe:
if (line != linefe):
print(line)
break
else:
break