What is th value inside self variable? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 2

What is th value inside self variable?

I tried printing it by print(self) it gave o/p like: <__main__.class object at 0x...> please explain...thanks in advance

2nd Mar 2018, 1:20 PM
Manoj More
Manoj More - avatar
2 ответов
+ 3
"self" is not a variable like val = n, "self" is an object refers to the instance attributes and methods, see this: class Class: x = 10 def func(self) : print(self.x) # this will show you what inside self print(dir(self)) ob = Class() ob. func() Output: 10 [__class__, __delatrr__, ..., func, x] Note: "self" is not special is not more than convention you can use car! or whatever, but keep following the convention because your code may be less readable by other python programmers.
2nd Mar 2018, 5:29 PM
ƒred
ƒred - avatar
+ 1
Actually, the stuff that is being printed isn't exactly the value of self. It is the memory location of self (class). As every data has a memory location glued to it, classes are no exception :)
2nd Mar 2018, 1:58 PM
777
777 - avatar