Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Correct Sentence by mscislaw
def correct_sentence(text: str) -> str:
return text[0].upper() + text[1:].rstrip('.') + '.'
May 2, 2021
Comments: