compter variable dans la classe Python
class Car:
counter = 0
def __init__(self,color):
self.color = color
Car.counter += 1
car1 = Car("red")
car2 = Car("orange")
print(Car.counter)
StupidGamedev