转自:http://www.ibm.com/developerworks/cn/aix/library/au-multiprocessing/
一、Python中的线程使用: Python中使用线程有两种方式:函数或者用类来包装线程对象。 1、函数式:调用thread模块中的start_new_thread()函数来产生新线程。如下例: …