파이썬을 마스터하기 위한 학습 로드맵을 만들어볼게.1. 기초 문법 학습 (1~2주) • 변수, 데이터 타입 (int, float, str, list, tuple, dict, set) • 조건문 (if, elif, else) • 반복문 (for, while) • 함수 (def, return, lambda) • 리스트/딕셔너리 컴프리헨션2. 객체지향 프로그래밍 (OOP) (2~3주) • 클래스와 객체 (class, self, __init__) • 상속, 다형성, 캡슐화 • 클래스 메서드와 정적 메서드 (@classmethod, @staticmethod) • 매직 메서드 (__str__, __repr__, __len__, __getitem__ 등..