如何使所有"独特" tensorflow中的列表对?

时间:2018-05-17 10:43:47

标签: tensorflow

说我们有清单[1,2,3] 如何制作"独特"张量流中的对[1,2],[1,3],[2,3]?

1 个答案:

答案 0 :(得分:0)

你需要在python中使用itertools.combinations

from itertools import combinations
L = [1, 2, 3]
Q=[",".join(map(str, comb)) for comb in combinations(L, 2)]
print(Q)