time模組
datetime模組
時間計算
random模組
生成隨機數
os模組
提供對作業系統呼叫的介面
sys模組
提供對直譯器的相關操作
shutil模組
高階的檔案,資料夾,壓縮包處理模組
shelve模組
乙個簡單的k,v將記憶體資料通過檔案持久化的模組
logging模組
用於記錄日誌和執行緒安全的模組
re模組
正規表示式模組
json&pickle模組
用於序列化
hashlib模組
用於加密
xml模組
實現不同語言或程式之間進行資料交換的協議
configpaser模組
用於處理特定格式的檔案
htmlparser模組
string模組
subprocess模組
math模組
python 之內置模組
裝飾器 def trace func result func args,kwargs print s r,r r func.name args,kwargs,result return result trace 裝飾器含義就是 fibonacci trace fibonacci def fibona...
Python3之內置模組collections
collections是python內建的乙個集合模組,提供了許多有用的集合類。namedtuple 我們知道tuple可以表示不可變集合,例如,乙個點的二維座標可以表示成 p 1,2 但是,看到 1,2 很難看出這個tuple是用來表示乙個座標的。定義乙個class又小題大做了,這時,namedt...
python學習之內置函式(二)
4.7.3 內建函式 2 int str bool set list 將乙個可迭代物件轉化為列表 tuple 將乙個可迭代物件轉換成元組 dic 通過相應的方式建立字典 print 輸出到螢幕原始碼 print value,sep end n file sys.stdout,flush false ...