Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Politically correct solution in Clear category for Correct Sentence by veky
def correct_sentence(text):
if not text.endswith('.'): text += '.'
return text[0].capitalize() + text[1:]
Feb. 24, 2018
Comments: