class Apple:
def print_my_tree_name(self):
print('I want to use name of Tree on which I\'m hanging')
class Tree:
def __init__(self, name):
self.name = name
self.apple = Apple()
a = Tree('test')
a.apple.print_my_tree_name()
Можно ли получить доступ к переменной name
, не передавая себя в класс Apple, например a.apple.print_my_tree_name()
?