Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
its work solution in Clear category for Correct Sentence by pakicetus
def correct_sentence(text: str) -> str:
if text[-1] != ".": text += "."
return text[0].upper() + text[1:]
July 3, 2020