Accessing python class member inside methods -


this code

class mine:     def __init__(self):         var = "hello"     def mfx(self):         var += "a method called"         print var      me = mine() 

when callme.mfx() gives following error

>>> me.mfx()  traceback (most recent call last):   file "<pyshell#1>", line 1, in <module>     me.mfx()   file "d:\more\pythonnnn\text.py", line 5, in mfx     var += "a method called" unboundlocalerror: local variable 'var' referenced before assignment >>> 

i need var use inside class. don't want self.var . why happening? how can make variable can used everywhere inside class. using python2.7

you should qualify var. (self.var instead of var)

class mine:     def __init__(self):         self.var = "hello"     def mfx(self):         self.var += "a method called"         print self.var  me = mine() me.mfx() 

Comments

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -