class vehicle:
    def drive(self):
        print("자동차가 달립니다")
        
    def tire(self):
        print("금호타이어")

class elecar(vehicle):
    

mycar = elecar()
mycar.drive()
mycar.tire()
            
        

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: