classIceCream(object):def__init__(self,flavor,numScoops,costPerScoop,remaining_icecream):self.flavor=flavorself.numScoops=numScoopsself.costPerScoop=costPerScoopself.remaining_icecream=remaining_icecreamdefscoop(self):#shows the amount of ice cream remaining after an order is scooped#scoops icecream and decreases the number of scoops leftself.remaining_icecream-=self.numScoopsreturnself.remaining_icecreamdeftotal_cost(self):#vanilla ice cream is sold at a discount of half off!ifself.flavor=="vanilla":total_cost=self.numScoops*.5*self.costPerScoopelse:total_cost=self.numScoops*self.costPerScoopreturntotal_cost
Your answer seems reasonable.
Find out if you're right!