執行緒模組

from __future__ import print_function
import threading
def counter(count):
    while count > 0:
        print("Count value", count)
        count -= 1
    return

t1 = threading.Thread(target=countdown,args=(10,))
t1.start()
t2 = threading.Thread(target=countdown,args=(20,))
t2.start()

在 Python 的某些實現如 CPython 的,真正的並行沒有使用,因為使用了被稱為的 GIL,或執行緒實現 ģ 葉形 nterpreter L玉珠。

以下是 Python 併發的絕佳概述:

David Beazley(YouTube) 的 Python 併發