which variable are used to keep count of number of variable in class python 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)