Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Correct Sentence by roman.alilov
def correct_sentence(text):
return (text[0].capitalize()+ text[1:] if text[~0]=='.'
else text[0].capitalize()+ text[1:] + '.')
Aug. 17, 2019
Comments: