I have two specific situations where I don't understand how importing works in Python:
1st specific situation:
When I import the same module in two different Python scripts, the module isn't imported twice, right? The first time Python encounters it, it is imported, and second time, does it check if the module has been imported, or does it make a copy?
2nd specific situation:
Consider the following module, called bla.py
:
a = 10
And then, we have foo.py
, a module which imports bla.py
:
from bla import *
def Stuff ():
return a
And after that, we have a script called bar.py
, which gets executed by the user:
from foo import *
Stuff() #This should return 10
a = 5
Stuff()
Here I don't know: Does Stuff()
return 10 or 5?