5월 4일 First Word (simplified)
You are given a string where you have to find its first word.
This is a simplified version of the First Word mission.
Input string consists of only english letters and spaces.
There aren’t any spaces at the beginning and the end of the string.
Input: A string.
Output: A string.
Example:
first_word("Hello world") == "Hello"
답
def first_word(text: str) -> str:
return text.split()[0]
'알고리즘 공부' 카테고리의 다른 글
[파이썬] 단어를 알파벳 단위로 만들어서 리스트화 시키기. (0) | 2020.05.13 |
---|---|
[파이썬] 백준 10870번 피보나치 수 5 (5월6일) (0) | 2020.05.06 |
10872번 팩토리얼 (0) | 2020.05.06 |
파이썬 백준 코딩 (0) | 2020.05.06 |