摘要: #创建线程threading_list = [] t1 = threading.Thread(target=music,args=(u'爱情买卖',)) threading_list.append(t1) t2 = threading.Thread(target=move,args=(u'阿凡达',)) threading_list.append(t2)for t in threading_lis 阅读全文
posted @ 2019-09-19 14:47 python_practice 阅读(176) 评论(0) 推荐(0)