Answers for "how to separate a sentence in python"

1

python sentence splitter

>>> from nltk import tokenize
>>> p = "Good morning Dr. Adams. The patient is waiting for you in room number 3."

>>> tokenize.sent_tokenize(p)
['Good morning Dr. Adams.', 'The patient is waiting for you in room number 3.']
Posted by: Guest on July-15-2021
1

python split string to sentences

import spacy
nlp = spacy.load('en_core_web_sm') # Load the English Model

string1 = "This is the first sentence. This is the second sentence. This is the third sentence."
doc = nlp(string1)

list(doc.sents)
    
 # Output: ["This is the first sentence.", "This is the second sentence.", "This is the third sentence."]
Posted by: Guest on November-22-2021

Code answers related to "how to separate a sentence in python"

Python Answers by Framework

Browse Popular Code Answers by Language