Re: Formatting input text file

2008-08-14 Thread Gerard flanagan
[EMAIL PROTECTED] wrote: Hi, it's me again with tons of questions. I hava an input file structured like this: X XYData-1 1. 3.08333 2. 9.05526 3. 3.13581

RE: Formatting input text file

2008-08-14 Thread Edwin . Madari
ta.append(row) for i in data: print ' '.join(i) = good luck. Edwin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, August 14, 2008 7:07 AM To: python-list@python.org Subject: F

Re: Formatting input text file

2008-08-14 Thread brad
[EMAIL PROTECTED] wrote: Hi, it's me again with tons of questions. I hava an input file structured like this: X XYData-1 1. 3.08333 > number1 number2 number3 number4 number5 number6 split is your friend. -- http://mail

Formatting input text file

2008-08-14 Thread [EMAIL PROTECTED]
Hi, it's me again with tons of questions. I hava an input file structured like this: X XYData-1 1. 3.08333 2. 9.05526 3. 3.13581 ...