python类太方便了

    技术2022-07-12  80

    class Car(object): def __init__(self,color,type): self.color=color; self.type=type def printCarInfo(self): print("this car is {}".format(self.type)) print("color is {}".format(self.color)) car1=Car("red","BYD") car1.printCarInfo()

    Processed: 0.009, SQL: 9