Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Correct Sentence by apotokin
# string can be addressed as list.
# strings are immutable objects, so it is bettere to build it in one step
correct_sentence = lambda text: text[0].upper() + text[1:] + ('.' if text[-1] != '.' else '')
if __name__ == '__main__':
print("Example:")
print(correct_sentence("greetings, friends."))
# These "asserts" are used for self-checking and not for an auto-testing
assert correct_sentence("greetings, friends") == "Greetings, friends.", 1
assert correct_sentence("Greetings, friends") == "Greetings, friends.", 2
assert correct_sentence("Greetings, friends.") == "Greetings, friends.", 3
assert correct_sentence("hi") == "Hi.", 4
assert correct_sentence("welcome to New York") == "Welcome to New York.", 5
print("Coding complete? Click 'Check' to earn cool rewards!")
May 1, 2019
Comments: