如何在Python中导入工作

时间:2017-03-22 03:56:31

标签: python function python-3.x python-import python-module

如果您有一个模块,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是运行整个脚本还是仅运行所需的部分?

0 个答案:

没有答案