Module
- built-in module
- 같은 위치에 있는 .py 파일을 import해서 사용
Package
- module을 모아 놓은 하나의 프로그램
- __init__.py 파일로 초기화 해야 함(3.3+부터는 필수 x)
Namespace
- import a as b
- from a import b
- 상대 경로로 호출 가능
Virtual Environment
- virtualenv, conda 등
'부스트캠프 AI Tech > Python' 카테고리의 다른 글
Data handling (0) | 2022.01.22 |
---|---|
Exception/File/Log handling (0) | 2022.01.21 |
Object Oriented Programming (0) | 2022.01.21 |
Pythonic code (0) | 2022.01.19 |
Data Structure (0) | 2022.01.19 |