python學習 模組

2021-09-25 17:05:23 字數 1002 閱讀 3976

一.模組包括三種:

- 應用程式自定義模組

1.建立兩個py檔案,乙個是定義函式用的cal.py

---

----

----

----

----

----

----

----

----

----

----

----

----

----

----

----

----

- 注:如果你對python感興趣,我這有個學習python基地,裡面有很多學習資料,感興趣的+q群:688244617--

----

----

----

----

----

----

----

----

----

----

----

----

----

----

----

----

-def

add(x,y)

:return x+y

另檔案test.py乙個呼叫cal.py的函式

import cal

print

(cal.add(3,

5))

另一種呼叫的方法

from cal import add

print

(add(3,

5))

呼叫另乙個檔案裡所有的函式

from cal import

*print

(add(3,

5))

----import

1.執行對應檔案 # 先執行一遍 然後再引入函式

2.引入變數名

python學習(模組)

模組搜尋路徑 匯入乙個叫 spam 的模組時,直譯器先在當前目錄中搜尋名為 spam.py 的檔案,然後在環境變數 pythonpath 指琮的目錄列表中搜尋,然後是環境變數 path 中的路徑列表。如果 pythonpath 沒有設定,或者檔案沒有找到,接下來搜尋安裝目錄,在 unix 中,通常是...

python 模組學習

一 from django.contrib.auth.hashers import make password 通過函式名即可發現,主要有兩個函式,分別是建立密碼和驗證 用法ps 123456 dj ps make password ps,none,pbkdf2 sha256 建立django密碼,...

python學習 模組

time import time time.ctime 獲取當前時間的字串 time.localtime 返回值是strcut time型別的物件 st time.localtime st.tm yday 現在是今年第幾天 st.tm hour 現在是今天第幾個小時 st.tm mon 現在是今年的...