1 Star 0 Fork 0

吴超/huamei

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.py 711 Bytes
一键复制 编辑 原始数据 按行查看 历史
wmc 提交于 2019-10-20 22:27 . first commit
import pickle
import threading,time,queue
# a_dict = {'da': 111, 2: [23,1,4], '23': {1:2,'d':'sad'}}
# with open('p.pickle','wb')as f:
# # f.write()
# pickle.dump(a_dict,f)
# with open('p.pickle', 'rb') as file:
# a_dict1 =pickle.load(file)
# print(a_dict1)
def job(li,q):
a=[]
for i in li:
a.append(i**2)
time.sleep(1)
# print(a)
q.put(a)
def th():
q=queue.Queue()
th_li=[]
data = [[1,2,3],[3,4,5],[4,4,4],[5,5,5]]
for i in data:
t=threading.Thread(target=job,args=(i,q))
t.start()
th_li.append(t)
for t in th_li:
t.join()
re_li=[]
for i in data:
re_li.append(q.get())
print(re_li)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wumuchen/huamei.git
git@gitee.com:wumuchen/huamei.git
wumuchen
huamei
huamei
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385