次のことを行うにはどうすればよいですか? b_class を宣言している間、b_class を常に直接インスタンス化するわけではなく、ライブラリによってインスタンス化されることに注意してください。
class a_class:
def some_method(self):
"""
get the class instance of b_class in which a_class is instantiated
using that instance, get var1
perform some action based on var1
"""
class b_class:
var1 = "init by the constructor or a method"
a_inst = a_class()
"""
other attributes
"""