Why is executed only one module import instead of 2?
Advertisements I suppose to have 3 files in the folder project as showed following: project |- module_b.py |- script_B1.py |- script_B2.py Content of 3 python files The content of module_b.py is: print("Inside module_b") The content of script_B1.py is: import module_b print("Inside script_B1") The content of script_B2.py is: import module_b import script_B1 print("Inside script_B2") Output of… Read More Why is executed only one module import instead of 2?