Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Correct Sentence by krzysztofc10
def correct_sentence(text: str) -> str:
"""
returns a corrected sentence which starts with a capital letter
and ends with a dot.
"""
# your code here
#upper text
text = text[0].upper()+text[1:];
if text.endswith('.'):
return text;
else:
text+='.';
return text;
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");
assert correct_sentence("Greetings, friends");
assert correct_sentence("Greetings, friends.");
assert correct_sentence("hi");
print("Coding complete? Click 'Check' to earn cool rewards!")
Jan. 16, 2018
Comments: