python 匯入模組

2021-09-28 17:14:13 字數 1326 閱讀 6818

我們可以用模組儲存函式,以達成共享**的作用

1、匯入的模組要在同一資料夾下

ak將呼叫hellokill中的函式

hellokill的**

def

build_profile

(first,last,

**user_info)

: profile=

profile[

'first_name1'

]=first

profile[

'last_name1'

]=last

for key,value in user_info.items():

profile[key]

= value

return profile

ak中的**

import hellokill

user_profile = hellokill.build_profile(

'albert'

,'einstein'

, location=

'princeton'

, field=

'physics'

)print

(user_profile)

輸出

顯然通 ***import 檔名***即可呼叫該檔案中的函式

1、匯入特定的函式

#格式

from module_name import function_name

#樣例from hellokill import build_profile

2、 使用as給函式或者未見指定別名

#格式--給函式指定別名

from module_name import function_name as fn

#樣例from hellokill import build_profile as bp

#格式--給模組指定別名

import module_name as mn

#樣例import hellokill as hk

3、 匯入模組所有函式

form module_name  import

*

python 匯入模組

最近開始學習python,遇到一些匯入模組的問題,花了幾分鐘終於琢磨明白了,給初學者介紹幾種型別 一 test sys test1 nv1.py nv2.py nv1.py 如下 classdog defadd self a,b self.a a self.b b c self.a self.b r...

python匯入模組

1 模組的定義 模組定義 用來邏輯上組織python 變數 函式 類 邏輯 目的是 實現乙個功能 本質就是.py結尾的python檔案。補充 包的定義 用來從邏輯組織模組的,本質就是乙個目錄 必須帶有乙個 init py檔案 2 匯入方法 匯入模組的方法 1.import module name 匯...

python匯入模組

python匯入模組分為2種 1import 模組名 也可以2 modulename haha 模組字串 然後 m import mymodule 下面方法就可以用python 動態建立類 如果要取得模組中的乙個屬性的話 可以用getattr 比如 c getattr m,myclass myobj...