python 如何建立包

2022-07-01 02:06:08 字數 806 閱讀 9783

步驟:

(1)包的名稱為drawing

(2)drawing中建立模組color和shape

檢視:

備註:(1) e:/python_script/已經加入到系統變數path中

(2) 建立包時,包下面必須包含__init__.py的檔案(此檔案中可以沒有任何內容)

呼叫包下的模組:

(1)color.py **

def

red():

print

"the color is red

"

(2)shape.py **

def

circle():

print

"the shape is circle

"

(3)呼叫color和shape中函式的**

#

coding:utf-8

#import drawing

import

drawing.color

from drawing import

shape

#引用的時候,需要加入包名和模組名

drawing.color.red()

#引用的時候,直接用模組名即可

shape.circle()

執行結果:

python中如何建立包 如何建立python的包

包是模組的集合,更適合乙個專案。像很多的第三方知名的模組都是以包的形式存 簡單的包實現 自己做乙個ammd包,功能簡單的只有加減乘除等功能,加減在乙個模組matham裡,乘除位於另乙個模組裡mathmd。下面是matham模組的 def add x,y return x ydef minus x,y...

如何建立切片包

對地圖進行打包之前,請確保在地 檔屬性 對話方塊中輸入關於地圖的描述性資訊。此資訊會包含到包中,並且將切片包上傳到 arcgis online 後,其他人可對此資訊進行訪問。通過在主選單上單擊檔案 地 檔屬性,可訪問此對話方塊。開啟 arcmap,然後開啟要建立切片包的地圖。單擊主選單中的自定義 a...

自動建立python包

coding utf 8 import os 引入path defcreate package path 判斷路徑是否存在 if os.path.exists path raise exception s 已經存在不可建立 path os.makedirs path makedirs建立路徑 ini...