Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Sixth solution in Clear category for Correct Sentence by simone.sartori
def correct_sentence(text: str) -> str:
"""
returns a corrected sentence which starts with a capital letter
and ends with a dot.
"""
text = text[0].upper() + text[1:]
if text[- 1] != ".":
text += "."
return text
if __name__ == '__main__':
print("Example:")
print(correct_sentence("greetings, friends"))
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."
print("Coding complete? Click 'Check' to earn cool rewards!")
Feb. 1, 2018