一、代码目录结构
自定义的模块在Common包下,Study文件下文件导入自定义的模块
二、源码
:文件
python导包默认是从中搜索的。
结果如下:['D:\PyCharm\source\Study', 'D:\PyCharm\source', 'D:\PyCharm\source\venv\Scripts\', 'D:\Python\Python36\DLLs', 'D:\Python\Python36\lib', 'D:\Python\Python36', 'D:\PyCharm\source\venv', 'D:\PyCharm\source\venv\lib\site-packages', 'D:\PyCharm\source\venv\lib\site-packages\', 'D:\PyCharm\source\venv\lib\site-packages\']
从结果中可以看到,并没有Common,也就是说直接是不能导入Common下的模块的(即:不能写成from CreateData import createData)。处理方式如下:
.1:
from Common.CreateData import createData from Common.Swap import swap
.2
.append('../Common') from CreateData import createData from Swap import swap
说明:网上大多数是第二种,将自定义模块路径加入到中,未找到第一种,这个可能是版本差异?前辈们用的,不支持包名.模块名?我用的是python3.6.8
import sys .append('../Common') #模块所在目录加入到搜素目录中 from CreateData import createData from Swap import swap def selectSort(lyst): i = 0 while i < len(lyst) - 1: minindex = i j = i + 1 while j < len(lyst): if lyst[j] < lyst[minindex]: minindex = j j += 1 if minindex != i: swap(lyst, i, minindex) i += 1 print(lyst) selectSort(createData())
:文件
def createData(): return [23, 45, 2, 35, 89, 56, 3]
:文件
def swap(lst, i, j): temp = lst[i] lst[i] = lst[j] lst[j] = temp
三、运行结果