我想比较文件中的两个值,就像两个文件都具有age变量一样。如果file1中的age具有恒定值16,则应与15-20间隔中的file2年龄进行比较,以满足条件true。
到目前为止,已经尝试过了。它会比较这些行,但我需要像文件1中的年龄间隔那样比较年龄间隔,即年龄15,因此应该与文件2中的15-20年龄相比较。
filename1 = "/home/pi/desktop/detect.txt"
filename2 = "/media/pi/KINGSTON/config.txt"
with open(filename1) as f1:
with open(filename2) as f2:
file1list = f1.read().splitlines()
file2list = f2.read().splitlines()
list1length = len(file1list)
list2length = len(file2list)
if list1length == list2length:
for index in range(len(file1list)):
if file1list[index] == file2list[index]:
print(file1list[index] + "==" + file2list[index])
else:
print(file1list[index] + "!=" + file2list[index]+" Not
Equel")
else:
print("difference inthe size of the file and number of
lines")