Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Nothing really new solution in Clear category for Correct Sentence by 9Teen90Three
def correct_sentence(text: str) -> str:
return text[0].upper() + text [1:] + '.' * (not text.endswith('.'))
Oct. 30, 2018
Comments: