📅  最后修改于: 2022-03-11 14:46:38.178000             🧑  作者: Mango
class Car:
counter = 0
def __init__(self,color):
self.color = color
Car.counter += 1
car1 = Car("red")
car2 = Car("orange")
print(Car.counter)