我正在创建一个字典如下:
y=[(1,2),(2,3),(1,2),(5,6)] dict={} for tup in y: tup=tuple(sorted(tup)) if tup in dict.keys(): dict[tup]=dict[tup]+1 else: dict[tup]=1
但是我的实际y包含大约4000万个元组,有没有办法使用多处理来加速这个过程?
y
谢谢