(Week 7) Python Flashcards
1
Q
What are the two kinds of data attributes?
A
Class Variables & Instance Variables
2
Q
What are class variables?
A
Variables declared inside the class but outside any instance methods. Shared across all the objects of the class. Modifying a class variable affects all the object instances at the same time
3
Q
What are instance variables?
A
Variables declared inside the constructor of the class. They are tied to the particular object instance of the class