<html>
<body>
At 10:37 AM 9/19/2003, Leeds, Mark wrote:<br><br>
<blockquote type=cite class=cite cite><font face="arial" size=2>I did
more investigation into my previous problem<br>
and what happens is that my text file has \r for representing<br>
a new line instead<br>
of a \n. is there a way to tell the readlines<br>
function that the symbol for a newline is \r rather<br>
than \n ? right now the readlines function reads<br>
the\r as another item in the list and just puts<br>
everything into one big list because it<br>
doesn't find any new line characters.<br>
 thanks. i'm really stuck because<br>
i can't read my data right now.</font></blockquote><br>
bigList = foo.readlines()<br>
niceList = bigList.split('\r')<br>
<x-sigsep><p></x-sigsep>
Bob Gailer<br>
bgailer@alum.rpi.edu<br>
303 442 2625<br>
</body>
</html>