Python では、別のオブジェクト Bar を含む Foo などのオブジェクトを Bar 自体から取得することはできますか? ここに私が意味するものの例があります
class Foo(object):
def __init__(self):
self.bar = Bar()
self.text = "Hello World"
class Bar(object):
def __init__(self):
self.newText = foo.text #This is what I want to do,
#access the properties of the container object
foo = Foo()
これは可能ですか?ありがとう!