Re: Python Classes and dynamic class members

2006-11-03 Thread James Stroud
[EMAIL PROTECTED] wrote: > James Stroud wrote: > >>[EMAIL PROTECTED] wrote: >> >>>I have a text file that I am parsing. Each line is of the form: >>> >>>max_time 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.10 0.11 0.12 >>> >>>The first item is the field name and the next twelve items are valu

Re: Python Classes and dynamic class members

2006-11-03 Thread [EMAIL PROTECTED]
James Stroud wrote: > [EMAIL PROTECTED] wrote: > > I have a text file that I am parsing. Each line is of the form: > > > > max_time 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.10 0.11 0.12 > > > > The first item is the field name and the next twelve items are values > > for each month in the y

Re: Python Classes and dynamic class members

2006-11-03 Thread John Machin
[EMAIL PROTECTED] wrote: > I have a text file that I am parsing. Each line is of the form: > > max_time 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.10 0.11 0.12 > > The first item is the field name and the next twelve items are values > for each month in the year. There are multiple lines eac

Re: Python Classes and dynamic class members

2006-11-03 Thread James Stroud
[EMAIL PROTECTED] wrote: > I have a text file that I am parsing. Each line is of the form: > > max_time 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.10 0.11 0.12 > > The first item is the field name and the next twelve items are values > for each month in the year. There are multiple lines e

Python Classes and dynamic class members

2006-11-03 Thread [EMAIL PROTECTED]
I have a text file that I am parsing. Each line is of the form: max_time 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.10 0.11 0.12 The first item is the field name and the next twelve items are values for each month in the year. There are multiple lines each for some different variable. I a