Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Correct Sentence by eryk.kosmala
def correct_sentence(text: str) -> str:
text = text[0].upper() + text[1:]
if not text.endswith('.'):
text += '.'
return text
Nov. 15, 2018
Comments: