I am trying to read two files and iterate over both of them together. Basically I'm trying to compare it line by line.
I get an error Too many values to unpack
f1=open("C:/oc.txt")
f2 = open("C:/p.txt")
for line,line1 in f1,f2:
|
|
|
To iterate over the two files in sync, use
You might want to use
|
|||||||||
|