-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFirst Word.py
34 lines (25 loc) · 1.4 KB
/
First Word.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"""
https://py.checkio.org/ru/mission/first-word/
Дана строка и нужно найти ее первое слово.
При решении задачи обратите внимание на следующие моменты:
В строке могут встречаться точки и запятые
Строка может начинаться с буквы или, к примеру, с пробела или точки
В слове может быть апостроф и он является частью слова
Весь текст может быть представлен только одним словом и все
Входные параметры: Строка.
Выходные параметры: Строка.
"""
def first_word(text: str) -> str:
return text.lstrip('.').lstrip().split()[0].split('.')[0].rstrip(',')
if __name__ == '__main__':
print("Example:")
print(first_word("Hello world"))
# These "asserts" are used for self-checking and not for an auto-testing
assert first_word("Hello world") == "Hello"
assert first_word(" a word ") == "a"
assert first_word("don't touch it") == "don't"
assert first_word("greetings, friends") == "greetings"
assert first_word("... and so on ...") == "and"
assert first_word("hi") == "hi"
assert first_word("Hello.World") == "Hello"
print("Coding complete? Click 'Check' to earn cool rewards!")