1
I am doing a program of a fuel pump using classes, but I am not able to calculate the amount of fuel for the value inserted, someone can give a light?
class BombaCombustivel():
def __init__(sel, tipoComb, valorLitro, quantComb):
self.tipoComb = tipoComb
self.valorLitro = valorLitro
self.quantComb = quantComb
def abastecerPorValor(self):
abastecerV = float(input("Valor a ser abastecido: "))
tirarComb = **calculo aqui**
abastecido = "Combustivel colocado: %d L"% tirarComb
return abastecerV
def abastecerPorLitro(self):
abastecerL = int(input("Quantidade de litros: "))
if abastecerL.isdigit():
pagar = self.valorLitro * self.abastecerL
valorPagar = "Valor a ser pago: R$ %f"% pagar
def setAlterarValor(self):
def setAlterarCombustivel(self):
def setAlterarQuantidadeCombustivel(self):