摘要:
1.线程的创建多线程的使用在一些较为复杂的问题中十分常见,例如用爬虫爬取上亿条数据的情况下,单线程便不再适用啦,要想掌握多线程的使用,我们首先从线程的创建和使用开始。Python中使用线程有多种方式。1.1函数式:调用thread模块中的start_new_thread()函数来产生新线程。如下例:# -*- coding: utf-8 -*- import thread def run_thread(n): for i in range(n): print i thread.start_new_thread(run_... 阅读全文