Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Correct Sentence by Tinus_Trotyl
def correct_sentence(text: str) -> str:
return text[0].upper() + text[1:] + ("." if text[-1] != "." else "")
Nov. 11, 2017
Comments: