From ac2d255cd6f0b2b82a4db128784f0dae8eab1dd6 Mon Sep 17 00:00:00 2001 From: timothy <53824764+timothy-jeong@users.noreply.github.com> Date: Tue, 11 Feb 2025 16:22:17 +0900 Subject: [PATCH] Update docs/ko/docs/tutorial/extra-models.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit change word 'Unwrapping' to 'Unpacking' Co-authored-by: Lee Yesong (이예송) --- docs/ko/docs/tutorial/extra-models.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ko/docs/tutorial/extra-models.md b/docs/ko/docs/tutorial/extra-models.md index 9e5ccbdcb..da1bb40bc 100644 --- a/docs/ko/docs/tutorial/extra-models.md +++ b/docs/ko/docs/tutorial/extra-models.md @@ -70,7 +70,7 @@ Python의 `dict`가 다음과 같이 출력됩니다: } ``` -#### `dict` 언래핑(Unwrapping) +#### `dict` 언패킹(Unpacking) `user_dict`와 같은 `dict`를 함수(또는 클래스)에 `**user_dict`로 전달하면, Python은 이를 "언랩(unwrap)"합니다. 이 과정에서 `user_dict`의 키와 값을 각각 키-값 인자로 직접 전달합니다.