728x90
#01 Say Hi
def say_hi(name:str, age:int) -> str: // -> 이게 뭘까?
return "Hi. My name is {} and I'm {} years old.".format(name, age)
print(say_hi('다희', 22))
#02 Correct Sentence
def c_s(text: str) -> str:
text = text[0].upper() + text[1:]
if not text.endswith('.'):
text += '.'
return text
#03
def first_word(text: str) -> str:
text = text.replace('.', ' ').replace(',', ' ').strip() //앞과 뒤의 공백 제거, 한 칸 이상의 연속된 공백 제거
text = text.split()
return text[0]
print(first_word("hello, dahee"))
참고링크
https://www.youtube.com/watch?v=POOMczpRo6M&index=4&list=PLGPF8gvWLYyomy0D1-uoQHTWPvjXTjr_a
'Develop > Python' 카테고리의 다른 글
[Python] [초급]유기농냠냠파이썬 | 김왼손의 왼손코딩 1-71강 (0) | 2019.02.06 |
---|---|
[Python] Repl.it - if/else/for문/print() (0) | 2019.01.16 |
[Python] Repl.It - 입출력/나누기/올림/내림/math module (0) | 2019.01.16 |