__new__ - A static method of the object class. - When you create a new object by calling the class, the __new__() method to create the object first and then calls the __init__() method to initialize the object’s attributes. - It receives the class as itself. - Must create object, return object. __init__ - It customizing/initiating instances which created with __new__ to be used as desired by the..