Introduction to the _ init _ method function in the Python class, the Python class constructor, And the python _ init _
If there is no _ init _ method function in a class, the instance object created using the class name is empty and is not initialized. If this method function is available, usually, as the first method function of the class, it is a bit like the constructor in C ++ and other languages.
Class Ca: def _ init _ (self, v): # Pay attention to the two underlines (self) before and after each. name = vdef pr (self): print "a --->", self. nameia = Ca ("Jeapedu") # essentially calls the _ init _ method function ia. pr () Ca. pr (ia)
Output result
A ---> Jeapedu
A ---> Jeapedu
In this article, we will talk about the _ init _ method function in the Python class. The Python class constructor is all the content that I have shared with you. I hope to give you a reference, we also hope that you can support the customer's home.