您可以在hello函数中导入其他模块,而不必在顶部导入模块。
class B(): def __init__(self): print "B" def hello(self): import lib.A print "hello B" a = A()

您可以在hello函数中导入其他模块,而不必在顶部导入模块。
class B(): def __init__(self): print "B" def hello(self): import lib.A print "hello B" a = A()