I am reading two text files comparing the values in one to the other, this requires two loops. The problem is that when the inner loop is finished, it never goes back into the loop. Any suggestions?
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]) -- http://mail.python.org/mailman/listinfo/python-list