You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
아무 키워드 인자를 받는 함수 생성의 경우, 모든 키워드 인자를 dict에 모아주는 **kwargs 파라미터 사용(26장 데코레이터 참고)
defprint_parameters(**kwargs):
forkey, valueinkwargs.items():
print(f'{key} = {value}')
print_parameters(alpha=1.5, beta=9, 감마=4) # 한글 파라미터 이름도 잘 작동함>>>alpha=1.5beta=9감마=4