<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.6000.16674" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT color=#000080>I have a program with 2 for loops like this (in 
pseudocode):</FONT></DIV>
<DIV><FONT color=#000080></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080>fw = open(newLine.txt, 'w')</FONT></DIV>
<DIV><FONT color=#000080>for&nbsp;i in xrange(0, 700,000, 1):</FONT></DIV>
<DIV><FONT color=#000080>&nbsp;&nbsp;&nbsp; read a file fname&nbsp;from 
folder</FONT></DIV>
<DIV><FONT color=#000080>&nbsp;&nbsp;&nbsp;&nbsp;for line in open(fname, 
'r'):</FONT></DIV>
<DIV><FONT color=#000080>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; do some simple 
string processing on line</FONT></DIV>
<DIV><FONT color=#000080>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
fw.write(newline)</FONT></DIV>
<DIV><FONT color=#000080>fw.close()</FONT></DIV>
<DIV><FONT color=#000080></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080>That's it.&nbsp; Very simple but after i reaches about 
550,000 the program begins to crawl.&nbsp; As an example, the loops to 
550,000&nbsp;takes about an hour.&nbsp; From 550,000 to 580,000 takes an 
additional 4 hours.</FONT></DIV>
<DIV><FONT color=#000080></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080>Any ideas about what could be going on?</FONT></DIV>
<DIV><FONT color=#000080></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080>Dinesh</FONT></DIV>
<DIV><FONT color=#000080></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080></FONT>&nbsp;</DIV></BODY></HTML>