Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.2k views
in Technique[技术] by (71.8m points)

python的import问题,如何在Outter_service.py中可以调用Demo目录下的app.py,

class InnerService:

    def __init__(self):
        print("inner service_1")
from servcie.inner_service import InnerService


class App:

    def __init__(self):
        print("inner app")
        InnerService()


if __name__ == '__main__':
    App()
class InnerService:

    def __init__(self):
        print("inner service_1")
from service_1.outter_service import OutterService
from Demo.app import App as DemoApp


class Main:

    def __init__(self):
        print("app")
        DemoApp()


if __name__ == '__main__':
    OutterService()
from Demo.app import App


class OutterService:

    def __init__(self):
        print("outter service_1")
        App()
project
  |--Demo
     |---service
          inner_service.py
     |---app.py
  |--service-1
       outter-service.py
  main.py

image.png

image.png

image.png


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...