Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for 3 Chefs by QinHuang
class AbstractCook:
food_name = ""
drink_name = ""
def __init__(self):
self.food_cost = 0
self.drink_cost = 0
def add_food(self,food_amount,food_price):
self.food_cost += food_amount * food_price
def add_drink(self,drink_amount,drink_price):
self.drink_cost += drink_amount * drink_price
def total(self):
total_cost = self.food_cost + self.drink_cost
return self.food_name + ": " + str(self.food_cost)+", "+ self.drink_name+": "+str(self.drink_cost)+", Total: "+str(total_cost)
class JapaneseCook(AbstractCook):
def __init__(self):
self.food_name = "Sushi"
self.drink_name = "Tea"
AbstractCook.__init__(self)
class RussianCook(AbstractCook):
def __init__(self):
self.food_name = "Dumplings"
self.drink_name = "Compote"
AbstractCook.__init__(self)
class ItalianCook(AbstractCook):
def __init__(self):
self.food_name = "Pizza"
self.drink_name = "Juice"
AbstractCook.__init__(self)
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
client_1 = JapaneseCook()
client_1.add_food(2, 30)
client_1.add_food(3, 15)
client_1.add_drink(2, 10)
client_2 = RussianCook()
client_2.add_food(1, 40)
client_2.add_food(2, 25)
client_2.add_drink(5, 20)
client_3 = ItalianCook()
client_3.add_food(2, 20)
client_3.add_food(2, 30)
client_3.add_drink(2, 10)
print(client_1.total())
assert client_1.total() == "Sushi: 105, Tea: 20, Total: 125"
assert client_2.total() == "Dumplings: 90, Compote: 100, Total: 190"
assert client_3.total() == "Pizza: 100, Juice: 20, Total: 120"
print("Coding complete? Let's try tests!")
Aug. 24, 2018