Hello,

The follow code willl read lines of two text files. It supposed to take the 
first line of the first text file and compare it to all the lines of the 
second text file, then go to the next line of the first text file and do the 
same and so on.

The problem is that once the inner loop is finished, it never goes in that 
loop again. Any suggestions?

Thank you,
Wes


The Code:


for refSymbol in symbols.readlines():
    for lookupSymbol in myfile.readlines():
        showme = lookupSymbol.split('\t')
        if showme[3] == refSymbol.strip():
            priceNew.write(refSymbol.strip()+" "+showme[10])


_________________________________________________
Python.NET mailing list - [email protected]
http://mail.python.org/mailman/listinfo/pythondotnet

Reply via email to