Python 批量添加线程
import threading thread_list=[] for i in range(20): t=threading.Thread(target=ip_test) t.start() thread_list.append(t) for i in thread_list: i.join()
利用列表,批量添加 启动线程
posted on 2018-11-23 19:41 缺陷催生进化,完美预示终结 阅读(818) 评论(0) 编辑 收藏 举报
import threading thread_list=[] for i in range(20): t=threading.Thread(target=ip_test) t.start() thread_list.append(t) for i in thread_list: i.join()
利用列表,批量添加 启动线程
posted on 2018-11-23 19:41 缺陷催生进化,完美预示终结 阅读(818) 评论(0) 编辑 收藏 举报