For the input of your function, you will be given one sentence. You have to return a corrected version, that starts with a capital letter and ends with a period (dot).
Pay attention to the fact that not all of the fixes are necessary. If a sentence already ends with a period (dot), then adding another one will be a mistake.
Input: A string.
Output: A string.
Example:
correct_sentence("greetings, friends") == "Greetings, friends."
correct_sentence("Greetings, friends") == "Greetings, friends."
correct_sentence("Greetings, friends.") == "Greetings, friends."
1
2
3
Precondition: No leading and trailing spaces, text contains only spaces, a-z A-Z , and .
-> Solve it
def correct_sentence(text: str) -> str:
"""
returns a corrected sentence which starts with a capital letter
and ends with a dot.
"""
return text[0].upper()+text[1:].rstrip('.')+'.'
def correct_sentence(text: str) -> str:
return text[0].upper()+text[1:].rstrip('.')+'.'
text = text[0].upper() + text[1:]
If not text.endswith('.'):
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") == "Greetings, friends."
assert correct_sentence("Greetings, friends") == "Greetings, friends."
assert correct_sentence("Greetings, friends.") == "Greetings, friends."
assert correct_sentence("hi") == "Hi."
assert correct_sentence("welcome to New York") == "Welcome to New York."
print("Coding complete? Click 'Check' to earn cool rewards!")
'프로그래밍 공부' 카테고리의 다른 글
함수활용_실습문제 11-13, 엘리베이터 시스템(분석) (1) | 2020.10.23 |
---|---|
16. Python, CheckiO Elementary_Is Even (0) | 2020.10.22 |
*14. Python, CheckiO Elementary_Between Markers (simplified) (0) | 2020.10.22 |
13. Python, CheckiO Elementary_Nearest Value (0) | 2020.10.22 |
12. Python, CheckiO Elementary_Beginning Zeros (0) | 2020.10.22 |
댓글