Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Capitalize solution in Clear category for Correct Sentence by Striga
def correct_sentence(text: str) -> str:
if text[-1] != '.':
text = text + '.'
return text[0].capitalize() + text[1:]
if __name__ == '__main__':
assert correct_sentence("greetings, friends") == "Greetings, friends."
assert correct_sentence("Greetings, friends") == "Greetings, friends."
assert correct_sentence("Greetings, friends.") == "Greetings, friends."
assert correct_sentence("hi") == "Hi."
assert correct_sentence("welcome to New York") == "Welcome to New York."
Sept. 25, 2020
Comments: