Re: best way to extract sentence from txt file

2011-05-17 Thread Chris Angelico
On Wed, May 18, 2011 at 4:40 AM, Michiel Overtoom wrote: > Until then we have to guess, and my E.S.P. is notoriously bad. Roll d20 and add your ESP skill and your Wisdom modifier. The DC for this test is 20 if you're familiar with D&D, or 25 if you are not. Chris Angelico Dungeon Master -- http

Re: best way to extract sentence from txt file

2011-05-17 Thread Miki Tebeka
http://nltk.googlecode.com/svn/trunk/doc/api/nltk.tokenize-module.html ? -- http://mail.python.org/mailman/listinfo/python-list

Re: best way to extract sentence from txt file

2011-05-17 Thread Michiel Overtoom
On May 17, 2011, at 20:22, Robert Pazur wrote: > my question is maybe quite simple: > What is the best (and shortest) way to extract sentence from .txt file? Well, open("filename.txt").readlines() gives you a list of all the lines in a txt file, which might not be sentences, depending on the te

best way to extract sentence from txt file

2011-05-17 Thread Robert Pazur
Hi all, my question is maybe quite simple: What is the best (and shortest) way to extract sentence from .txt file? Thanks in advance, Robert Pazur -- http://mail.python.org/mailman/listinfo/python-list