线程 ing 分类: python 2013-07-15 14:28 197人阅读 评论(0) 收藏
import threading
def test(a,b):
print a, b
p = threading.Thread(target=test, args=(1,2,))
p.start()
def test(a,b):
print a, b
p = threading.Thread(target=test, args=(1,2,))
p.start()