I try to read 2 files at the same time, but I get "too many values ββto unpack the error." Here is what I have:
for each_f, each_g in f, g : line_f = each_f.split() line_g = each_g.split()
I'm a little new to python, but suggested I could do this. If this is not possible, is there an equivalent method? (The two files I read are very large)
source share