python number of instances of a class code example
Example: count variable in class python
class Car:
counter = 0
def __init__(self,color):
self.color = color
Car.counter += 1
car1 = Car("red")
car2 = Car("orange")
print(Car.counter)
class Car:
counter = 0
def __init__(self,color):
self.color = color
Car.counter += 1
car1 = Car("red")
car2 = Car("orange")
print(Car.counter)