Circular (or cyclic) imports in Python

前端 未结 12 2383
醉梦人生
醉梦人生 2020-11-21 05:23

What will happen if two modules import each other?

To generalize the problem, what about the cyclic imports in Python?

12条回答
  •  心在旅途
    2020-11-21 05:57

    Suppose you are running a test python file named request.py In request.py, you write

    import request
    

    so this also most likely a circular import.

    Solution Just change your test file to another name such as aaa.py, other than request.py.

提交回复
热议问题