제일 간단한 문제 중 하나다.이름하고 나이 받아서 표현만 해주면 된다. 하지만, 파이선이니까 문제를 푸는게 중요한게 아니고 얼마나 뛰어나게 푸는 가가 중요하다. # 1. on CheckiO your solution should be a function# 2. the function should return the right answer, not print it. def say_hi(name: str, age: int) -> str: return "Hi. My name is {} and I'm {} years old".format(name, age) if __name__ == '__main__': #These "asserts" using only for self-checking and not necessa..