Python的引包机制 / 模块的搜索顺序
1、当前目录下有没有该***.py
2、python安装目录下面去找“**\Python36\Lib”下有没有*.py
3、环境变量path下面去找
- 导入python工程下新建文件夹Case自定义testcase的模块:
import sys
sys.path.append(“\Case:”) # 将该目录添加到系统变量path下
from Case import testcase
python中每一个模块都有一个内置属性.__file__可以去查看模块的完整路径
import random
print(random.__file__)
运行结果:
D:\Program Files\Python36\lib\random.py