classIceCream(object):def__init__(self,flavor,numScoops,costPerScoop,remaining_icecream):self.flavor=flavorself.numScoops=numScoopsself.costPerScoop=costPerScoopself.remaining_icecream=remaining_icecreamdefscoop(self):#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
Using Python, which of the following methods could be added to the classIceCream to print out the size of the order based on the number of scoops where 1 to 3 scoops is a small, 4 to 5 is a medium, and more than that is
a large.