Initialize variables of class | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Initialize variables of class

class Class: n=3 def __init__(self): n=5 C = Class() print (C.n) Its output 3 Object C of Class must call __init__ and n=5, but its output 3. Why?

6th Nov 2018, 5:41 AM
ะะปะตะบัะฐะฝะดั€ ะ›ะตะฑะตะดะตะฒ
ะะปะตะบัะฐะฝะดั€ ะ›ะตะฑะตะดะตะฒ - avatar
10 Answers
+ 5
Use self.n = 5 instead of just n = 5. The reason is, when you do n = 5, n is treated as a local variable within __init__ method, to access the class variable n, you use self.n Hth, cmiiw (Edit) self.<attribute> changes the value for a particular instance, to change the class' value we can use <Class>.<attribute>
6th Nov 2018, 6:18 AM
Ipang
+ 7
๐Ÿฟnom, nom, nom, crunch, crunch. Don't mind me... I'm just eating popcorn waiting in suspense for Ipang to respond with a follow up. ๐Ÿ˜œ
6th Nov 2018, 7:39 AM
David Carroll
David Carroll - avatar
+ 6
Hey David Carroll where you've been, feels like yesterday was too long :D Do me a favour to correct me answer here please, still struggling with that neck breaker Python XD class P: n = 3 def change_object_attr(self, val): self.n = val def change_class_attr(self, val): P.n = val a = P() b = P() print(P.n, a.n, b.n) a.change_object_attr (10) print(P.n, a.n, b.n) a.change_class_attr (20) print(P.n, a.n, b.n) c = P() print(P.n, a.n, b.n, c.n) (Edit) Popcorn looks yummy ...
6th Nov 2018, 9:12 AM
Ipang
+ 5
ะะปะตะบัะฐะฝะดั€ ะ›ะตะฑะตะดะตะฒ As much as I appreciate you marking my last response as the best answer, I would say that the original answer by Ipang is the best answer for your specific question. My response provided more of a review which was inspired by Ipang and this topic in general.
6th Nov 2018, 7:41 PM
David Carroll
David Carroll - avatar
+ 4
Hey Ipang ... For you... I've got plenty of popcorn to share. ๐Ÿคช Work and life have been keeping me busy. I've recently been making time for SoloLearn. We'll see how long my schedule let's me keep this up. Regarding your answer, it looks like you've demonstrated the two types of variables in Python classes: - Class Variables - Instance Variables Providing an explanation of the behavior differences in your code may be easier to understand with this code demo I've put together. https://code.sololearn.com/cx8ReX9Dkhhl/?ref=app DISCLAIMER: Since I don't actively work with Python, these are based on my observations and documentation I've reviewed. Hope this helps.
6th Nov 2018, 7:12 PM
David Carroll
David Carroll - avatar
+ 4
ะะปะตะบัะฐะฝะดั€ ะ›ะตะฑะตะดะตะฒ Regarding your follow up question, the answer is: Yes. You can see this examined further in the code I shared in my previous response.
6th Nov 2018, 7:22 PM
David Carroll
David Carroll - avatar
+ 4
Big Thanks David Carroll for help with in-depth answer, and *ahem* ... popcorn XD Good to see you around David, and to know that you've been busy outside, better be busy than idle I guess, still appreciate you being here, even for a short period as time permits : ) I actually could have said the same about the accepted answer mark, my proposed answer was a brief, an extended version actually deserved the appreciation for the fair effort given. In any ways, I have always learned new things from the questions and the answers, and for that I Thank ะะปะตะบัะฐะฝะดั€ ะ›ะตะฑะตะดะตะฒ also : )
7th Nov 2018, 2:58 AM
Ipang
+ 2
So, can I set value for variable n of class Class (not object Class) inside body of the class? Just Class.n=5?
6th Nov 2018, 6:30 AM
ะะปะตะบัะฐะฝะดั€ ะ›ะตะฑะตะดะตะฒ
ะะปะตะบัะฐะฝะดั€ ะ›ะตะฑะตะดะตะฒ - avatar
+ 2
To be honest, I haven't tried such ideas, and I'm not really sure whether Python has a way to differentiate class variables & methods with those of instance variables & methods. I will search for that : )
6th Nov 2018, 6:34 AM
Ipang
+ 2
I thought, I can check as best answer more then one answer...., thanks
6th Nov 2018, 7:47 PM
ะะปะตะบัะฐะฝะดั€ ะ›ะตะฑะตะดะตะฒ
ะะปะตะบัะฐะฝะดั€ ะ›ะตะฑะตะดะตะฒ - avatar