# python-language-foundations-map
## 개요
- **목적**: Python 언어 표면에서 객체와 런타임 의미론까지의 기초 탐색 경로를 제공.
- **범위**: 어휘 구조, 표현식, 문장, 내장 타입, 제어 흐름, 함수, 예외, class, module과 실행 의미.
- **책임 경계**: 언어 기초의 개념을 연결하고 표준 라이브러리 및 외부 생태계의 상세 목록은 인접 지도에 위임.
- **상위 관계**: [[python-knowledge-map|Python 지식 지도]] 아래에서 언어 기초 경로를 세부적으로 탐색.
## 언어 표면
- [[python-syntax-expressions-and-statements|Python 문법, 표현식과 문장]] - 어휘 구조에서 표현식과 simple·compound statement로 이어지는 언어 표면.
- [[python-execution-model|Python 실행 모델]] - 실행 단위, namespace, scope와 평가 경계.
- [[python-name-binding-and-scope|Python 이름 바인딩과 범위]] - 이름과 객체의 연결 및 lexical scope.
## 값과 타입
- [[python-built-in-types-and-collections|Python 내장 타입과 컬렉션]] - 기본 값과 sequence, mapping, set의 의미 비교.
- [[python-data-structures-map|Python 자료구조 지식 지도]] - 내장 컨테이너와 표준 컬렉션을 protocol, 비용과 ADT 경계로 심화 탐색한다.
- [[python-object-model|Python 객체 모델]] - identity, type, value, mutability의 일반 관계.
- [[python-data-model|Python 데이터 모델]] - 객체 protocol과 내장 연산의 연결.
- [[python-builtins|Python builtins]] - 내장 이름공간과 공통 관찰 기능의 책임 경계.
## 제어 흐름
- [[python-control-flow-and-comprehensions|Python 제어 흐름과 컴프리헨션]] - truth value, iterable, 반복, comprehension과 계산 시점.
- [[python-iteration-and-generators|Python 반복과 제너레이터]] - iterable, iterator, generator protocol의 상세 의미.
- [[python-exceptions|Python 예외]] - 정상 흐름과 예외 전파가 만나는 객체 기반 제어 경로.
## 함수와 객체
- [[python-functions-and-scope|Python 함수와 스코프]] - 호출, 매개변수 바인딩, closure와 lexical environment.
- [[python-class-and-inheritance-foundations|Python 클래스와 상속 기초]] - class object, instance, attribute, method binding, inheritance와 MRO.
- [[python-descriptor-and-special-methods|Python descriptor와 special method]] - class 기초에서 위임하는 고급 속성 및 protocol 의미.
## 모듈과 런타임 확장
- [[python-modules-and-imports|Python 모듈과 import]] - module, package, namespace와 import 실행 경계.
- [[python-language-surface-and-runtime-semantics|Python 언어 표면과 런타임 의미론]] - 표면, 평가, 바인딩, 객체 행동, 제어 흐름의 종합 연결.
- [[python-and-abstract-data-structure-boundaries|Python과 추상 자료구조의 경계]] - Python 컨테이너 의미와 언어 독립 자료구조 이론의 책임 경계.
- [[python-runtime-and-ecosystem|Python 런타임과 생태계]] - 언어 의미론이 표준 라이브러리, 패키징, 외부 생태계로 확장되는 상위 synthesis.
- [[python-language-foundations-sources|Python 언어 기초 출처 묶음]] - Tutorial, Language Reference, Library Reference의 기초 근거 범위.
## 상위 및 인접 지도
- [[python-knowledge-map|Python 지식 지도]] - Python 전체 지식 구조의 상위 진입점.
- [[python-standard-library-map|Python 표준 라이브러리 지도]] - 언어 기초 위에 놓이는 표준 라이브러리 기능 영역.
- [[python-package-management-tools-map|Python 패키징 도구 지도]] - 런타임과 배포 생태계의 도구 책임 경계.
- [[python-external-libraries-map|Python 외부 라이브러리 지식 지도]] - 외부 library 영역의 기능별 탐색 경계.