1. 프로젝트 구조와 관리1.1 Python 프로젝트 구조 설계Python 프로젝트는 파일과 디렉토리를 체계적으로 구조화하여 유지보수성과 재사용성을 높일 수 있습니다. 예시:project_name/├── project_name/ │ ├── __init__.py │ ├── module1.py │ ├── module2.py ├── tests/ │ ├── test_module1.py│ ├── test_module2.py├── requirements.txt ├── README.md ├── setup.py 1.2 코드 재사용성과 모듈화모듈화를 통해 코드를 잘게 나누고 필요한 곳에서 재사용할 수 있습니다.# module1.pydef gre..