I am trying to reference a variable from a class inside a method, I tried it without self but that gave me the error "name 'one' is not defined".
class hello(object):
self.one = 1
def method(self):
print one
food = hello()
food.method()
It should be
print self.one
instead of ofprint one
andone = 1
instead ofself.one = 1