Object lifetime in Python

Wikipedia says, " In computer science, the object lifetime (or life cycle) of an object in object-oriented programming is the time between an object's creation (also known as instantiation or construction) till the object is no longer used, and is destructed or freed. " Typically, an object goes through the following phases during it's lifetime: … Continue reading Object lifetime in Python