파이썬 함수의 인자로
default 를 정해 놓을 수 있다. 그래서
def say_hello(name="anonymous"):
print("hello", name)
say_hello("eugene")
say_hello()
# hello eugene
# hello anonymous
argument가 일치하지 않는 경우에 원래는 error를 뱉지만
default parameter를 설정해 준다면
argument를 전달하지 않더라도
기본으로 설정된 argument로 출력 가능하다.