Combining several text files

2009-02-02 Thread rdmurray
Quoth Eric : > This is my first post, so please advise if I'm not using proper > etiquette. I've actually searched around a bit and while I think I can > do this, I can't think of a clean elegant way. I'm pretty new to > Python, but from what I've learned so far is that there is almost > always an

Re: Combining several text files

2009-02-02 Thread Eric
On Feb 2, 12:17 pm, Chris Rebert wrote: > On Mon, Feb 2, 2009 at 9:48 AM, Eric wrote: > > This is my first post, so please advise if I'm not using proper > > etiquette. I've actually searched around a bit and while I think I can > > do this, I can't think of a clean elegant way. I'm pretty new to

Re: Combining several text files

2009-02-02 Thread Scott David Daniels
Eric wrote: I have to parse several log files Then I can do one of two things. First I could combine them so that the resulting file ends up with the oldest on top and newest on the bottom. Otherwise, I could just iterate over the multiple files within my parser. I don't need working code (t

Re: Combining several text files

2009-02-02 Thread Chris Rebert
On Mon, Feb 2, 2009 at 9:48 AM, Eric wrote: > This is my first post, so please advise if I'm not using proper > etiquette. I've actually searched around a bit and while I think I can > do this, I can't think of a clean elegant way. I'm pretty new to > Python, but from what I've learned so far is t

Re: Combining several text files

2009-02-02 Thread MRAB
Eric wrote: > This is my first post, so please advise if I'm not using proper > etiquette. I've actually searched around a bit and while I think I can > do this, I can't think of a clean elegant way. I'm pretty new to > Python, but from what I've learned so far is that there is almost > always an

Combining several text files

2009-02-02 Thread Eric
This is my first post, so please advise if I'm not using proper etiquette. I've actually searched around a bit and while I think I can do this, I can't think of a clean elegant way. I'm pretty new to Python, but from what I've learned so far is that there is almost always an easier way. I have to