Python Objects Vocabulary

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/11

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering core object-oriented programming concepts, terminology, and modules from the Python Objects lecture notes.

Last updated 6:16 PM on 8/31/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

12 Terms

1
New cards

Class

A template or blueprint that defines the abstract characteristics of a thing, including its attributes, fields, or properties and its behaviors or methods.

2
New cards

Object

A bit of self-contained code and data representing a particular instance of a class.

3
New cards

Method

A function or defined capability within a class that describes what an object can do.

4
New cards

Attribute

A variable or bit of data stored within a class or object.

5
New cards

Instance

The actual object created at runtime from a class template.

6
New cards

State

The set of values of the attributes of a particular object.

7
New cards

Constructor

A special block of statements in a class called when an object is created, primarily used to set up instance variables to their initial values.

8
New cards

Destructor

A special block of code or method called at the moment an object is destroyed or discarded.

9
New cards

Inheritance

The ability to extend an existing parent class to create a new child class that inherits all capabilities of the parent and adds its own.

10
New cards

Subclass

A more specialized version of a class that inherits attributes and behaviors from its parent class and can introduce its own.

11
New cards

dir() command

A Python function that lists the capabilities and methods of an object.

12
New cards

sqlite3 module

A Python module written by Gerhard Häring that provides a SQL interface compliant with the DB-API 2.0 specification described by PEP 249 for SQLite.