Class Attributes and Instance Attributes
We'll cover the following...
What could go wrong when using class variables like instance variables?
Press + to interact
class A:x = 1class B(A):passclass C(A):passprint(A.x, B.x, C.x)B.x = 2print(A.x, B.x, C.x)A.x = 3print(A.x, B.x, C.x) # C.x changed, but B.x didn'ta = A()print(a.x, A.x)a.x += 1print(a.x, A.x)
Explanation
- Class