1. 程式人生 > 實用技巧 >PYTHON3:模組、包

PYTHON3:模組、包

PYTHON3的模組和包

一、模組和包的說明

1、模組:字尾為py或pyc的python程式檔案;模組就是一個python源程式檔案;

2、包:包是一個容器,作用是組織和管理包或者模組。

二、模組的引用:

1、方法1:import 包名.模組名

#python3.6.8

#import 包名.模組名 as 別名
import laohu.test as test

laohu.test.info()
test.info()

  

2、方法2:

2.1、from 包名 import 模組名

2.2、from 包名.模組名 import 函式名(類名)

 1 #python3.6.8
2
#from 包名 import 模組名 3 from laohu import test 4 5 6 #from 包名.模組名 import 函式名(類名) 7 from laohu.test import testclass 8 9 10 test.info() 11 12 tc = testclass() 13 tc.info()