10. Python 標準函式庫概覽¶
10.1. 作業系統介面¶
os 模組提供了數十個與作業系統溝通的函式:
>>> import os
>>> os.getcwd() # 回傳目前的工作目錄
'C:\\Python314'
>>> os.chdir('/server/accesslogs') # 改變目前的工作目錄
>>> os.system('mkdir today') # 在系統 shell 中執行 mkdir 指令
0
務必使用 import os 而非 from os import *。這將避免因系統不同而有實作差異的 os.open() 覆蓋內建函式 open()。
在使用 os 諸如此類大型模組時搭配內建函式 dir() 和 help() 是非常有用的:
>>> import os
>>> dir(os)
<returns a list of all module functions>
>>> help(os)
<returns an extensive manual page created from the module's docstrings>
對於日常檔案和目錄管理任務,shutil 模組提供了更容易使用的高階介面:
>>> import shutil
>>> shutil.copyfile('data.db', 'archive.db')
'archive.db'
>>> shutil.move('/build/executables', 'installdir')
'installdir'
10.2. 檔案之萬用字元 (File Wildcards)¶
glob 模組提供了一函式可以從目錄萬用字元中搜尋並產生檔案列表:
>>> import glob
>>> glob.glob('*.py')
['primes.py', 'random.py', 'quote.py']
10.3. 命令列引數¶
通用工具腳本常需要處理命令列引數。這些引數會以 list(串列)形式存放在 sys 模組的 argv 屬性中。例如以下 demo.py 檔案:
# demo.py 檔案
import sys
print(sys.argv)
以下是在命令列運行 python demo.py one two three 的輸出:
['demo.py', 'one', 'two', 'three']
argparse 模組提供了一種更複雜的機制來處理命令列引數。以下腳本可擷取一個或多個檔案名稱,並可選擇要顯示的行數:
import argparse
parser = argparse.ArgumentParser(
prog='top',
description='Show top lines from each file')
parser.add_argument('filenames', nargs='+')
parser.add_argument('-l', '--lines', type=int, default=10)
args = parser.parse_args()
print(args)
當 python top.py --lines=5 alpha.txt beta.txt 在命令列執行時,該腳本會將 args.lines 設為 5,並將 args.filenames 設為 ['alpha.txt', 'beta.txt']。
10.4. 錯誤輸出重新導向與程式終止¶
sys 模組也有 stdin,stdout,和 stderr 等屬性。即使當 stdout 被重新導向時,後者 stderr 可輸出警告和錯誤訊息:
>>> sys.stderr.write('Warning, log file not found starting a new one\n')
Warning, log file not found starting a new one
終止腳本最直接的方式就是利用 sys.exit()。
10.5. 字串樣式比對¶
re 模組提供正規表示式 (regular expression) 做進階的字串處理。當要處理複雜的比對以及操作時,正規表示式是簡潔且經過最佳化的解決方案:
>>> import re
>>> re.findall(r'\bf[a-z]*', 'which foot or hand fell fastest')
['foot', 'fell', 'fastest']
>>> re.sub(r'(\b[a-z]+) \1', r'\1', 'cat in the the hat')
'cat in the hat'
當只需要簡單的字串操作時,因為可讀性以及方便除錯,字串本身的 method 是比較建議的:
>>> 'tea for too'.replace('too', 'two')
'tea for two'
10.6. 數學相關¶
math 模組提供了 C 函式庫中底層的浮點數運算的函式:
>>> import math
>>> math.cos(math.pi / 4)
0.70710678118654757
>>> math.log(1024, 2)
10.0
random 模組提供了隨機選擇的工具:
>>> import random
>>> random.choice(['apple', 'pear', 'banana'])
'apple'
>>> random.sample(range(100), 10) # 不重複抽樣
[30, 83, 16, 4, 8, 81, 41, 50, 18, 33]
>>> random.random() # 區間 [0.0, 1.0) 中的隨機浮點數
0.17970987693706186
>>> random.randrange(6) # 從 range(6) 中隨機選擇整數
4
statistics 模組提供了替數值資料計算基本統計量(包括平均、中位數、變異量數等)的功能:
>>> import statistics
>>> data = [2.75, 1.75, 1.25, 0.25, 0.5, 1.25, 3.5]
>>> statistics.mean(data)
1.6071428571428572
>>> statistics.median(data)
1.25
>>> statistics.variance(data)
1.3720238095238095
SciPy 專案 <https://scipy.org> 上也有許多數值計算相關的模組。
10.7. 網路存取¶
Python 中有許多存取網路以及處理網路協定。最簡單的兩個例子包括 urllib.request 模組可以從網址抓取資料以及 smtplib 可以用來寄郵件:
>>> from urllib.request import urlopen
>>> with urlopen('https://docs.python.org/3/') as response:
... for line in response:
... line = line.decode() # 將 bytes 轉換為 str
... if 'updated' in line:
... print(line.rstrip()) # 移除最後面的換行符號
...
Last updated on Nov 11, 2025 (20:11 UTC).
>>> import smtplib
>>> server = smtplib.SMTP('localhost')
>>> server.sendmail('soothsayer@example.org', 'jcaesar@example.org',
... """To: jcaesar@example.org
... From: soothsayer@example.org
...
... Beware the Ides of March.
... """)
>>> server.quit()
(注意第二個例子中需要在本地端執行一個郵件伺服器。)
10.8. 日期與時間¶
datetime 模組提供許多 class 可以操作日期以及時間,從簡單從複雜都有。模組支援日期與時間的運算,而實作的重點是有效率的成員擷取以達到輸出格式化以及操作。模組也提供支援時區換算的類別。
>>> # 能夠輕易建立與格式化
>>> import datetime as dt
>>> now = dt.date.today()
>>> now
datetime.date(2003, 12, 2)
>>> now.strftime("%m-%d-%y. %d %b %Y is a %A on the %d day of %B.")
'12-02-03. 02 Dec 2003 is a Tuesday on the 02 day of December.'
>>> # 支援運算
>>> birthday = dt.date(1964, 7, 31)
>>> age = now - birthday
>>> age.days
14368
10.9. 資料壓縮¶
常見的解壓縮以及壓縮格式都有直接支援的模組。包括:zlib、