#01 Say Hidef 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 Sentencedef c_s(text: str) -> str: text = text[0].upper() + text[1:] if not text.endswith('.'): text += '.' return text #03def first_word(text: str) -> str: text = text.replace('.', ' ').replace(',', ' ').strip() ..