You’ve been assigned to work on a class called ProductClass,…
You’ve been assigned to work on a class called ProductClass, which serves as the blueprint for all the products sold by the store. The following code defines ProductClass. class ProductClass(): def __init__(self): self.__price = 5.0 self.__onHand = 0 self.__numberOfItems = 10 Assuming that the main program and the class are in the same script, how would you create two objects from the ProductClass? This question tests your ability to create multiple objects of a class.