To find all combinations of size 2, a solution is to use the python module called itertools from itertools import combinations for i in combinations(L,2): ...
確定! 回上一頁