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