您好,登錄后才能下訂單哦!
這篇文章主要介紹了python導入不同目錄下的自定義模塊過程解析,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
一、代碼目錄結構
自定義的模塊在Common包下,Study文件下SelectionSort.py文件導入自定義的模塊
二、源碼
2.1:SelectionSort.py文件
python導包默認是從sys.path中搜索的。
sys.path結果如下:['D:\\PyCharm\\source\\Study', 'D:\\PyCharm\\source', 'D:\\PyCharm\\source\\venv\\Scripts\\python36.zip', '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\\setuptools-40.8.0-py3.6.egg', 'D:\\PyCharm\\source\\venv\\lib\\site-packages\\pip-19.0.3-py3.6.egg']
從結果中可以看到,并沒有Common,也就是說直接是不能導入Common下的模塊的(即:不能寫成from CreateData import createData)。處理方式如下:
2.1.1:
from Common.CreateData import createData from Common.Swap import swap
2.1.2
sys.path.append('../Common') from CreateData import createData from Swap import swap
說明:網上大多數是第二種,將自定義模塊路徑加入到sys.path中,未找到第一種,這個可能是版本差異?前輩們用的python2.x,不支持包名.模塊名?我用的是python3.6.8
import sys sys.path.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())
2.2:CreateData.py文件
def createData(): return [23, 45, 2, 35, 89, 56, 3]
2.3:Swap.py文件
def swap(lst, i, j): temp = lst[i] lst[i] = lst[j] lst[j] = temp
三、運行結果
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。