What is the function of “self”?
Answer / chaitanya
“Self” is a variable that represent the instance of the object to itself. In most of the object oriented programming language, this is passed as to the methods as a hidden parameters that is defined by an object. But, in python it is declare it and pass it explicitly. It is the first argument that gets created in the instance of the class A and the parameters to the methods are passed automatically. It refers to separate instance of the variable for individual objects. This is the first argument that is used in the class instance and the “self” method is defined explicitly to all the methods that are used and present. The variables are referred as “self.xxx”.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to pass optional or keyword parameters from one function to another in python?
How do you use modulus in python?
Do you need __ init __?
post me some questions from pythom script
What is python? What do you understand of pep 8?
Which is better for future java or python?
Explain accessor and mutator methods in python?
What a blank curly brace initialize? A dictionary or a set?
The following is displayed by a print function call?
How do you count loops in python?
Explain assert in action?
What does end do in python?