View Solution

Circular Import

Create an import cycle.

Circular Import0
Insanidade69Insanidade6928,257
28 Oct 2025 28 Oct 2025
0 0 0
Helo guys, to make this achievement you only can import some function in two files, example:

#a.py
from b import funcB

def funcA()

-=-=-=-=-=-=-=-=-=-=-= SEPARATOR =-=-=-=-=-=-=-=-=-=-=-

#b.py
from a import func

def funcB()