如果您有一个模块,E.G:some_module.py
,其中包含变量和函数,E.G:
SOME_LIST = ["list items"] #Doesn't really matter
def some_function():
do_something
def some_other_function():
do something using SOME_LIST & some_function()
然后从另一个文件导入。
导入时,Python是运行整个脚本还是仅运行所需的部分?