Код: Выделить всё
def method(self):
return self.x
class Foo:
def __init__(self, x):
self.x = x
func = method
foo = Foo(5)
foo.func() # 5
Код: Выделить всё
class Foo:
func = lambda x: print(x)
foo = Foo()
foo.func() #
Код: Выделить всё
class Foo:
func = print
foo = Foo()
foo.func()
Подробнее здесь: https://stackoverflow.com/questions/798 ... iving-self
Мобильная версия