线程 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()

原文地址:https://www.cnblogs.com/think1988/p/4628127.html