You are viewing a single comment's thread. Return to all comments →
This is my code
import re text=str(input()) for i in re.split("(?<=[.!?\"]) +", text): print(i)
Seems like cookies are disabled on this browser, please enable them to open this website
From Paragraphs to Sentences
You are viewing a single comment's thread. Return to all comments →
This is my code