線程模塊:python
使用Threading模塊建立線程網絡
瞭解線程:函數
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import thread
import time# 爲線程定義一個函數
def print_time( threadName, delay):
count = 0
while count < 5:
time.sleep(delay)
count += 1
print "%s: %s" % ( threadName, time.ctime(time.time()) )# 建立兩個線程
try:
thread.start_new_thread( print_time, ("Thread-1", 2, ) )
thread.start_new_thread( print_time, ("Thread-2", 4, ) )
except:
print "Error: unable to start thread"
while 1:
pass