python 导入自定义包

路径设置

对于以下的自定义包的导入,首先需要加入该包的位置到python的环境变量里面。通过sys:

import sys
sys.path.append('D:\Codes\Pycharm\core-algorithm-master')

from algorithms.ch02sort.base.template import SortTemplate

python 导入自定义包_第1张图片

你可能感兴趣的:(Python基础和操作,python)