Question: Write a script named dif.py . This script should prompt the user for the names of two text files and compare the contents of the

Write a script named dif.py. This script should prompt the user for the names of two text files and compare the contents of the two files to see if they are the same. If they are, the script should simply output "Yes". If they are not, the script should output "No", followed by the first lines of each file that differ from each other. The input loop should read and compare lines from each file. The loop should break as soon as a pair of different lines is found. (LO: 4.1,4.5)
My Code:
file1= input("Enter the name of the text file: ")
file2= input("Enter the name of the second text file: ")
f1= open(str(file1),'r')
f2= open(str(file2),'r')
lines1= f1.readlines()
lines2= f2.readlines()
while True:
lines1== lines2
print("Yes")
if lines1=="":
break
elif lines2=="":
break
elif lines1!= lines2:
print("No")
print(f"File 1: {lines1}")
print(f"File 2: {lines2}")
break
f1.close()
f2.close()
This code does not print out the lines that differ. What can I add without using zip() or compare_files?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!