Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
MySolutionCorrectSentence solution in Clear category for Correct Sentence by jemg2030
def correct_sentence(text: str) -> str:
# your code here
text = text.strip() # Remove leading and trailing spaces
if not text.endswith('.'):
text += '.' # Add period at the end if it's not already there
text = text[0].upper() + text[1:] # Capitalize the first letter
return text
print("Example:")
print(correct_sentence("greetings, friends"))
# These "asserts" are used for self-checking
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!")
March 20, 2023