Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Correct Sentence by delahere
def correct_sentence(text: str) -> str:
# your code here
#
# Get the first letter of the string and convert it to upper
# case.
# Replace the string with the new first letter and a slice
# of the original string, without the first letter.
#
# Then check the last character of the string using an index
# of -1 to wrap around. If the last character is not a period,
# concatenate a period to the string.
#
first = text[0].upper()
text = first + text[1:]
if text[-1] != '.':
text = text + "."
print(text)
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!")
April 17, 2023