Colección de citas famosas - Frases motivadoras - Falta el error python33.dll, ¿cómo solucionarlo?
Falta el error python33.dll, ¿cómo solucionarlo?
Hover (coche):
def __init__(self, combustible, eficiencia, hover_fuel):
Coche. _ _ init _ _ (self, combustible, eficiencia) #Es correcto agregar self aquí.
self.hover_fuel = hover_fuel
Definir movimiento(self, nueva x, nueva y):
hover_fuel_used = (new_x ** 2 + new_y ** 2 ) ** 0.5 / 20
Prueba:
Error #Car.move(new_x, new_y), agrega parámetros propios.
Car.move(self, new_x, new_y) #Aquí Car es el nombre de la clase principal, no una instancia. Al llamar a una función miembro, debe haber un parámetro self.