Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple and quick with regexp solution in Clear category for Correct Sentence by bsquare
import re
def correct_sentence(text):
return re.sub(r"^(.*[^.])[.]?$", r"\1.", text[0].upper() + text[1:])
Sept. 18, 2019
Comments: