class ProductFactory(object):
""" Model the factory to create product based on input """
@staticmethod
def create_product(product_type=Milk.name()):
if product_type == Milk.name():
return Milk()
elif product_type == Sugar.name():
return Sugar()
else:
None
#
#cls