python3的多執行緒操作

2021-07-15 07:39:04 字數 1193 閱讀 7119

python3 執行緒中常用的兩個模組為:

_thread

threading(推薦使用)

thread 模組已被廢棄。使用者可以使用 threading 模組代替。所以,在 python3 中不能再使用"thread" 模組。為了相容性,python3 將 thread 重新命名為 "_thread"。

test.py

#!/usr/bin/python3

import _thread

import time

# 定義執行緒呼叫函式

def echo_name(tag,delay):

count=0

while count<5:

time.sleep(delay)

count+=1

print("%s:%s" % ( tag,time.ctime(time.time()) ))

#建立2個執行緒

try:

_thread.start_new_thread( echo_name,("thread_1",2))

_thread.start_new_thread( echo_name,("thread_2",5))

except:

print("error:無法啟動執行緒")

#死迴圈

while 1:

pass

執行結果

[root@mail pythoncode]# python3 test.py

thread_1:wed jul 20 18:03:39 2016

thread_1:wed jul 20 18:03:41 2016

thread_2:wed jul 20 18:03:42 2016

thread_1:wed jul 20 18:03:43 2016

thread_1:wed jul 20 18:03:45 2016

thread_2:wed jul 20 18:03:47 2016

thread_1:wed jul 20 18:03:47 2016

thread_2:wed jul 20 18:03:52 2016

thread_2:wed jul 20 18:03:57 2016

thread_2:wed jul 20 18:04:02 2016

Python3多執行緒

學習python執行緒 python3 執行緒中常用的兩個模組為 thread threading 推薦使用 thread 模組已被廢棄。使用者可以使用 threading 模組代替。所以,在 python3 中不能再使用 thread 模組。為了相容性,python3 將 thread 重新命名為...

python3 多執行緒

多執行緒簡介 執行緒 thread 也稱輕量級程序,時作業系統能夠進行運算排程的最小單位,它被包涵在程序之中,時程序中的實際運作單位。執行緒自身不擁有資源,只擁有一些在執行中必不可少的資源,但他可與同屬乙個程序的其他執行緒共享程序所擁有的全部資源。乙個執行緒可以建立和撤銷另乙個執行緒,同一程序中的多...

Python3多執行緒操作簡單示例

python3 執行緒中常用的兩個模組為 thread threading 推薦使用 thread 模組已被廢棄。使用者可以使用 threading 模組代替。所以,在 python3 中不能再使用 thread 模組。為了相容性,python3 將 thread 重新命名為 thread test...