Term
|
Definition
Tell Python to make a new kind of thing |
|
|
Term
|
Definition
two meanings: - The most basic kind of thing - Any instance of some thing |
|
|
Term
|
Definition
What you get when you tell Python to create a class |
|
|
Term
|
Definition
Inside the functions in a class, self is a variable for the instance/object being accessed |
|
|
Term
|
Definition
The concept that one class can inherit traits from another class, much like you and your parents |
|
|
Term
|
Definition
the concept that a class can be composed of other classes as parts, much like how a car has wheels |
|
|
Term
|
Definition
A property class's have that are from composition and are usually variables |
|
|
Term
|
Definition
A phrase to say that something inherits from another, as in a "salmon" is-a "fish." |
|
|
Term
|
Definition
A phrase to say something is composed of other things or has a trait, as in "a salmon has-a mouth." |
|
|