Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Correct Sentence by sanello
def correct_sentence(text):
text = list(text)
text[0] = text[0].upper()
if text[-1] != '.':
text.append('.')
return "".join(text)
Aug. 7, 2019
Comments: