Re: Python question (PyNoob)

2007-08-20 Thread Ant
On Aug 20, 1:33 am, Anonymous <[EMAIL PROTECTED]> wrote: ... > 1). Data Munging (text processing) - instead of Perl Check out the re module (regexes) in the standard library, and the pyparsing third party library: http://pyparsing.wikispaces.com/ for more complex stuff. > 2). Automating my build

Re: Python question (PyNoob)

2007-08-20 Thread Carl Banks
On Aug 19, 10:18 pm, Benjamin <[EMAIL PROTECTED]> wrote: > On Aug 19, 7:33 pm, Anonymous <[EMAIL PROTECTED]> wrote: > > > I have exp with C/C++ (and a few other langs). I want to use Python to > > start doing the ff: > > > 1). Data Munging (text processing) - instead of Perl > > 2). Automating my b

Re: Python question (PyNoob)

2007-08-20 Thread Carl Banks
On Aug 19, 8:33 pm, Anonymous <[EMAIL PROTECTED]> wrote: > I have exp with C/C++ (and a few other langs). I want to use Python to > start doing the ff: > > 1). Data Munging (text processing) - instead of Perl > 2). Automating my build process > 3). (Possibly) some web data retrieval jobs > > Can an

Re: Python question (PyNoob)

2007-08-19 Thread Terry Reedy
"Anonymous" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] |I have exp with C/C++ (and a few other langs). I want to use Python to | start doing the ff: | | 1). Data Munging (text processing) - instead of Perl | 2). Automating my build process | 3). (Possibly) some web data retrieval

Re: Python question (PyNoob)

2007-08-19 Thread Benjamin
On Aug 19, 7:33 pm, Anonymous <[EMAIL PROTECTED]> wrote: > I have exp with C/C++ (and a few other langs). I want to use Python to > start doing the ff: > > 1). Data Munging (text processing) - instead of Perl > 2). Automating my build process > 3). (Possibly) some web data retrieval jobs > > Can an

Re: Python question (PyNoob)

2007-08-19 Thread Pablo Torres
On Aug 19, 7:33 pm, Anonymous <[EMAIL PROTECTED]> wrote: > I have exp with C/C++ (and a few other langs). I want to use Python to > start doing the ff: > > 1). Data Munging (text processing) - instead of Perl > 2). Automating my build process > 3). (Possibly) some web data retrieval jobs > > Can an

Re: Python question (PyNoob)

2007-08-19 Thread Erik Max Francis
Anonymous wrote: > I have exp with C/C++ (and a few other langs). I want to use Python to > start doing the ff: > > 1). Data Munging (text processing) - instead of Perl > 2). Automating my build process > 3). (Possibly) some web data retrieval jobs > > Can anyone point me to resurces/possibly s