Re: how to build Object for List data

2012-10-08 Thread Joel Goldstick
On Mon, Oct 8, 2012 at 2:50 PM, Laszlo Nagy wrote: >> >> Seq validation >> 1 Program3,1,3,4 # max(F1,F3) to F4 >> .. >> n >> How to using python to Read the text file, Build the data as object >> class ? > > Open the file using the open() command. Then iterate over the lines within

Re: how to build Object for List data

2012-10-08 Thread Laszlo Nagy
Seq validation 1 Program3,1,3,4 # max(F1,F3) to F4 .. n How to using python to Read the text file, Build the data as object class ? Open the file using the open() command. Then iterate over the lines within a stateful algorithm that parses the lines with regular expressions. Wh