[Python] 인스턴스 변수 vs 클래스 변수
Generally speaking, instance variables are for data unique to each instance and class variables are for attributes and methods shared by all instances of the class: https://docs.python.org/3/tutorial/classes.html#class-and-instance-variables 인스턴스 변수 : 각 인스턴스의 고유한 데이터 클래스 변수 : 모든 클래스 인스턴스에 공유되는 데이터 및 메소드 class Foo: classVar = 0 def __init__(self, classVar, instanceVar): self.instanceVar = instanc..