python3 執行緒中常用的兩個模組為:
_thread
threading(推薦使用)
thread 模組已被廢棄。使用者可以使用 threading 模組代替。所以,在 python3 中不能再使用"thread" 模組。為了相容性,python3 將 thread 重新命名為 "_thread"。
test.py
# -*- coding:utf-8 -*-
#!/usr/bin/python3
import _thread
import time
# 定義執行緒呼叫函式
def echo
count=0
while count<5:
time.sleep(delay)
count+=1
print("%s:%s" % ( tag,tim程式設計客棧e.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:rqhotsr03: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有兩個模組可以學習,乙個是比較簡單的 thread模組,另乙個是提供比較多整合方法的threading模組 推薦 thread.start new thread func,args kargs 第乙個引數是執行緒函式,第二個是傳遞給執行...
python3的多執行緒操作
python3 執行緒中常用的兩個模組為 thread threading 推薦使用 thread 模組已被廢棄。使用者可以使用 threading 模組代替。所以,在 python3 中不能再使用 thread 模組。為了相容性,python3 將 thread 重新命名為 thread test...
Python3多執行緒
學習python執行緒 python3 執行緒中常用的兩個模組為 thread threading 推薦使用 thread 模組已被廢棄。使用者可以使用 threading 模組代替。所以,在 python3 中不能再使用 thread 模組。為了相容性,python3 將 thread 重新命名為...