Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Correct Sentence by Kverde
def correct_sentence(text: str) -> str:
"""
returns a corrected sentence which starts with a capital letter
and ends with a dot.
"""
# your code here
if text[-1] != '.':
text += '.'
if text[0].islower():
text = text[0].upper() + text[1:]
return text
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('greetings, friends.') == 'Greetings, friends.'
print("The mission is done! Click 'Check Solution' to earn rewards!")
Aug. 5, 2022
Comments: