vote up 3 vote down star
3

Hi,

I want to learn a text manipulation language and I have zeroed in on Python. Apart from text manipulation Python is also used for numerical applications, machine learning, AI, etc. My question is how do I approach the learning of Python language so that I am quickly able to write sophisticated text manipulation utilities. Apart from regular expressions in the context of "text manipulation" what language features are more important than others what modules are useful and so on.

Thanks.

flag

60% accept rate

4 Answers

vote up 10 vote down check

Beyond regular expressions here are some important features:

For tools, I recommend looking at the following:

Edit: A good links specific to text processing in Python:

link|flag
Nice generators there. – Christian Witts Mar 24 at 7:24
vote up 3 vote down

There's a book Text Processing in Python. I didn't read it myself yet but I've read other articles of this author and generally they're a good staff.

link|flag
+1 for that, great read and will certainly aid anyone. – Christian Witts Mar 24 at 7:23
vote up 1 vote down

read standard python tutorial http://docs.python.org/tutorial/
after that "Dive into Python" http://diveintopython.org/

also for training you could use Project Euler ( http://projecteuler.net ) and PythonChalange ( http://www.pythonchallenge.com/ )

but speed of learning will depend from your programming skills in general=)

for me functional programming features was more important, they make my code most elegant.

link|flag
vote up 0 vote down

I found the object.__doc__ and dir(obj) commands incredibly useful in learning the language.

e.g.

a = "test,test,test"

What can I do with a? dir(a). Seems I can split a.

vec = a.split (",")

What is vec? vec.__doc__:

"new list initialized from sequence's items"

What can I do with vec? dir(vec).

vec.sort ()

etc ...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.