Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Head, *body and tail. solution in Clear category for Correct Sentence by Tinus_Trotyl
def correct_sentence(text):
head, *body, tail = text
return "".join([head.upper()] + body + [tail if tail == "." else tail + "."])
Nov. 16, 2017
Comments: