예제 #1
0
 def __init__(self):
     Vehicle.__init__(self, "Ford", "Mustang", 460, 4)
     Gas.__init__(self, 20)
예제 #2
0
 def __init__(self):
     Vehicle.__init__(self, "Dodge", "Ram", 120, 4)
     Gas.__init__(self, 26)
예제 #3
0
 def __init__(self):
     Vehicle.__init__(self, "Subaru", "Crosstrek", 60, 4)
     Gas.__init__(self, 40)
     Electric.__init__(self, 6)