Create a food ordering app for a restaurant using OOps
class MenuItem: def __init__(self, name, price): self.name = name self.price = price def info(self): return self.name + ': $' + str(self.price) def get_total_price(self, count): total_price = self.price * count # If count is 3 or higher, multiply it by 0.9 if count >= 3: total_price *= 0.9 # Round total_price to the nearest whole number and return it return round(total_price) class Food(MenuItem): def __init__(self, name, price, calorie_count): super().__init__(name, price) self.calorie_count = calorie_count def info(self): return self.name + ': $' + str(self.price) + ' (' + str(self.calorie_count) + 'kcal)' class Drink(MenuItem):