Prototypes - University of Arizona

To begin with, recall that methods with names such as. __x__. are special “hooks” that are invoked . automatically (i.e. invisibly / behind the scenes) in various situations. For example: When we instantiate an object using the initializer, e.g. x = int() or x = Student() etc, Python automatically invokes a method of that class called ... ................
................