Nothing here yet.
Nothing here yet.
In this document, I aim to organize my thoughts on the Class, the foundation of object-oriented programming (OOP) in Python. I will define the basic concepts and terminology of classes and learn how to design and utilize them through practical exampl...

이번 문서에서는 파이썬 객체 지향 프로그래밍(OOP)의 근간을 이루는 **클래스(Class)**에 대해 정리해보고자 한다. 클래스의 기본적인 개념과 용어를 정의하고, 실제 예제를 통해 클래스를 설계하고 활용하는 방법을 알아본다. 나아가 지난 '리스트(List) 심층 분석'에서 잠시 다루었던 **던더 메서드(Dunder Method)**가 클래스 내에서 어떻게 연산자 오버로딩과 객체 표현을 가능하게 하는지, 그리고 클래스 변수와 상속의 개념까지 ...

This document covers an in-depth analysis of the List, one of the most fundamental data structures in Python. The goal is to move beyond the superficial usage of lists and to explore and organize their intrinsic features and core internal operating p...
