Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Correct Sentence solution in Creative category for Correct Sentence by svartmetall
def correct_sentence(text: str) -> str:
first = text[0].upper()
middle = text[1:]
last = (text[-1]!='.') * '.'
return f'{first}{middle}{last}'
Feb. 23, 2018